        :root {
        --brand-primary: #FF813E;
        --brand-secondary: #1574D0;
        --brand-tertiary: #F0F0F0;
        --dark-bg-1: #1a1a1a;
        --dark-bg-2: #2c2c2c;
        --dark-bg-3: #343a40;
        --light-text: #f8f9fa;
        --light-text-2: #e9ecef;
        --accent-glow: rgba(255, 129, 62, 0.15);
        }
        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }
        body {
        font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
        background: linear-gradient(145deg, var(--dark-bg-1) 0%, var(--dark-bg-2) 100%);
        color: var(--light-text);
        line-height: 1.7;
        overflow-x: hidden;
        min-height: 100vh;
        }
        header {
        background: linear-gradient(180deg,
        rgba(21, 116, 208, 0.12) 0%,
        rgba(21, 116, 208, 0.06) 50%,
        rgba(21, 116, 208, 0.02) 100%);
        padding: 0;
        position: relative;
        }
        .script_header_zone {
        text-align: center;
        padding: 2.5rem 1.5rem 1.8rem;
        border-bottom: 1px solid rgba(21, 116, 208, 0.15);
        background: rgba(21, 116, 208, 0.04);
        }
        .company_signature_name {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        font-weight: 700;
        letter-spacing: -0.03em;
        background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.6rem;
        font-style: italic;
        }
        .contact_email_display {
        font-size: 1rem;
        color: var(--light-text-2);
        opacity: 0.85;
        letter-spacing: 0.01em;
        }
        .contact_email_display a {
        color: var(--brand-secondary);
        text-decoration: none;
        transition: opacity 0.25s ease;
        }
        .contact_email_display a:hover {
        opacity: 0.75;
        }
        .supporting_elements_row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 2rem;
        gap: 2rem;
        flex-wrap: wrap;
        }
        .logo_container_signature {
        flex-shrink: 0;
        z-index: 10;
        }
        .logo_container_signature img {
        height: 85px;
        width: 85px;
        display: block;
        object-fit: contain;
        }
        .main_nav_signature {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
        }
        .main_nav_signature a {
        padding: 0.75rem 1.5rem;
        text-decoration: none;
        color: var(--light-text);
        font-weight: 500;
        font-size: 0.95rem;
        border-radius: 6px;
        background: rgba(21, 116, 208, 0.08);
        border: 1px solid rgba(21, 116, 208, 0.2);
        transition: background 0.3s ease, border-color 0.3s ease;
        white-space: nowrap;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        }
        .main_nav_signature a:hover,
        .main_nav_signature a:focus {
        background: rgba(21, 116, 208, 0.18);
        border-color: rgba(21, 116, 208, 0.4);
        outline: 2px solid var(--brand-secondary);
        outline-offset: 2px;
        }
        .cta_button_group_row {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.2rem 2rem 2rem;
        gap: 1rem;
        flex-wrap: wrap;
        background: rgba(21, 116, 208, 0.02);
        }
        .cta_primary_btn,
        .cta_secondary_btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        transition: opacity 0.25s ease, background 0.25s ease;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none;
        }
        .cta_primary_btn {
        background: var(--brand-primary);
        color: #1a1a1a;
        }
        .cta_primary_btn:hover,
        .cta_primary_btn:focus {
        opacity: 0.85;
        outline: 3px solid rgba(255, 129, 62, 0.4);
        outline-offset: 2px;
        }
        .cta_secondary_btn {
        background: rgba(21, 116, 208, 0.15);
        color: var(--light-text);
        border: 1px solid var(--brand-secondary);
        }
        .cta_secondary_btn:hover,
        .cta_secondary_btn:focus {
        background: rgba(21, 116, 208, 0.25);
        outline: 3px solid rgba(21, 116, 208, 0.3);
        outline-offset: 2px;
        }
        @media (max-width: 768px) {
        .supporting_elements_row {
        flex-direction: column;
        align-items: center;
        padding: 1.2rem 1rem;
        gap: 1.5rem;
        }
        .main_nav_signature {
        justify-content: center;
        width: 100%;
        }
        .logo_container_signature img {
        height: 70px;
        width: 70px;
        }
        .script_header_zone {
        padding: 2rem 1rem 1.5rem;
        }
        .cta_button_group_row {
        padding: 1rem 1rem 1.5rem;
        gap: 0.8rem;
        }
        .cta_primary_btn,
        .cta_secondary_btn {
        width: 100%;
        max-width: 320px;
        }
        }
        main {
        min-height: 400px;
        }
        footer {
        background: linear-gradient(225deg,
        rgba(255, 129, 62, 0.18) 0%,
        rgba(21, 116, 208, 0.12) 100%);
        position: relative;
        margin-top: 4rem;
        }
        .footer_asymmetric_wrapper {
        display: grid;
        grid-template-columns: 1fr 2fr;
        grid-template-rows: auto auto;
        min-height: 320px;
        }
        .footer_vertical_edge {
        grid-column: 1;
        grid-row: 1 / 3;
        background: linear-gradient(180deg,
        rgba(255, 129, 62, 0.25) 0%,
        rgba(255, 129, 62, 0.08) 100%);
        padding: 3rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-right: 2px solid rgba(255, 129, 62, 0.3);
        }
        .footer_logo_section img {
        height: 95px;
        width: 95px;
        margin-bottom: 1.5rem;
        }
        .footer_contact_info {
        margin-top: 2rem;
        }
        .footer_contact_info p {
        font-size: 0.95rem;
        color: var(--light-text-2);
        margin-bottom: 0.8rem;
        line-height: 1.6;
        }
        .footer_contact_info a {
        color: var(--brand-primary);
        text-decoration: none;
        font-weight: 500;
        transition: opacity 0.25s ease;
        }
        .footer_contact_info a:hover {
        opacity: 0.7;
        }
        .footer_horizontal_edge {
        grid-column: 2;
        grid-row: 1;
        background: linear-gradient(90deg,
        rgba(21, 116, 208, 0.18) 0%,
        rgba(21, 116, 208, 0.06) 100%);
        padding: 3rem 2.5rem;
        border-bottom: 2px solid rgba(21, 116, 208, 0.3);
        }
        .footer_services_bold_layout {
        display: flex;
        gap: 3rem;
        flex-wrap: wrap;
        }
        .footer_service_column h3 {
        font-size: 1.3rem;
        color: var(--brand-primary);
        margin-bottom: 1.2rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        }
        .footer_service_column ul {
        list-style: none;
        padding: 0;
        }
        .footer_service_column li {
        margin-bottom: 0.7rem;
        }
        .footer_service_column a {
        color: var(--light-text);
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.25s ease;
        display: inline-block;
        }
        .footer_service_column a:hover,
        .footer_service_column a:focus {
        color: var(--brand-secondary);
        outline: 2px solid var(--brand-secondary);
        outline-offset: 3px;
        padding: 2px 6px;
        border-radius: 3px;
        }
        .footer_copyright_zone {
        grid-column: 2;
        grid-row: 2;
        background: rgba(26, 26, 26, 0.6);
        padding: 2rem 2.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        }
        .footer_copyright_text {
        font-size: 0.9rem;
        color: var(--light-text-2);
        opacity: 0.8;
        }
        .footer_home_link a {
        color: var(--brand-secondary);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 0.5rem 1.2rem;
        border: 1px solid var(--brand-secondary);
        border-radius: 5px;
        transition: background 0.25s ease;
        display: inline-block;
        }
        .footer_home_link a:hover,
        .footer_home_link a:focus {
        background: rgba(21, 116, 208, 0.2);
        outline: 2px solid var(--brand-secondary);
        outline-offset: 2px;
        }
        @media (max-width: 968px) {
        .footer_asymmetric_wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        }
        .footer_vertical_edge {
        grid-column: 1;
        grid-row: 1;
        border-right: none;
        border-bottom: 2px solid rgba(255, 129, 62, 0.3);
        padding: 2rem 1.5rem;
        }
        .footer_horizontal_edge {
        grid-column: 1;
        grid-row: 2;
        padding: 2rem 1.5rem;
        }
        .footer_copyright_zone {
        grid-column: 1;
        grid-row: 3;
        padding: 1.5rem;
        justify-content: center;
        text-align: center;
        }
        .footer_services_bold_layout {
        flex-direction: column;
        gap: 2rem;
        }
        }
        .consent_layer_fixed {
        position: fixed;
        bottom: 25px;
        right: 25px;
        background: linear-gradient(135deg, var(--dark-bg-2) 0%, var(--dark-bg-3) 100%);
        border: 2px solid var(--brand-secondary);
        border-radius: 12px;
        padding: 1.8rem 2rem;
        max-width: 420px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 60px var(--accent-glow);
        z-index: 9999;
        display: none;
        animation: slideInFromBottom 0.5s ease-out;
        }
        @keyframes slideInFromBottom {
        from {
        transform: translateY(100px);
        opacity: 0;
        }
        to {
        transform: translateY(0);
        opacity: 1;
        }
        }
        .consent_layer_fixed.visible {
        display: block;
        }
        .consent_header_title {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--brand-primary);
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
        }
        .consent_description_text {
        font-size: 0.95rem;
        color: var(--light-text-2);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        }
        .consent_category_section {
        margin-bottom: 1.2rem;
        padding: 1rem;
        background: rgba(21, 116, 208, 0.08);
        border-radius: 8px;
        border: 1px solid rgba(21, 116, 208, 0.2);
        }
        .consent_category_label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 600;
        color: var(--light-text);
        font-size: 1rem;
        margin-bottom: 0.5rem;
        }
        .consent_toggle_switch {
        position: relative;
        width: 52px;
        height: 28px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 14px;
        transition: background 0.3s ease;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .consent_toggle_switch.active {
        background: var(--brand-primary);
        border-color: var(--brand-primary);
        }
        .consent_toggle_switch::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 20px;
        height: 20px;
        background: white;
        border-radius: 50%;
        transition: transform 0.3s ease;
        }
        .consent_toggle_switch.active::after {
        transform: translateX(24px);
        }
        .consent_category_description {
        font-size: 0.85rem;
        color: var(--light-text-2);
        opacity: 0.8;
        line-height: 1.5;
        margin-top: 0.5rem;
        }
        .consent_actions_row {
        display: flex;
        gap: 0.8rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
        }
        .consent_btn_accept,
        .consent_btn_reject,
        .consent_btn_save {
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 7px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: opacity 0.25s ease, background 0.25s ease;
        flex: 1;
        min-width: 110px;
        min-height: 44px;
        }
        .consent_btn_accept {
        background: var(--brand-primary);
        color: #1a1a1a;
        }
        .consent_btn_accept:hover,
        .consent_btn_accept:focus {
        opacity: 0.85;
        outline: 3px solid rgba(255, 129, 62, 0.4);
        outline-offset: 2px;
        }
        .consent_btn_reject {
        background: rgba(255, 255, 255, 0.1);
        color: var(--light-text);
        border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .consent_btn_reject:hover,
        .consent_btn_reject:focus {
        background: rgba(255, 255, 255, 0.15);
        outline: 2px solid rgba(255, 255, 255, 0.4);
        outline-offset: 2px;
        }
        .consent_btn_save {
        background: var(--brand-secondary);
        color: white;
        }
        .consent_btn_save:hover,
        .consent_btn_save:focus {
        opacity: 0.85;
        outline: 3px solid rgba(21, 116, 208, 0.4);
        outline-offset: 2px;
        }
        @media (max-width: 580px) {
        .consent_layer_fixed {
        bottom: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
        padding: 1.5rem;
        }
        .consent_actions_row {
        flex-direction: column;
        }
        .consent_btn_accept,
        .consent_btn_reject,
        .consent_btn_save {
        width: 100%;
        }
        }
        .contact-main-wrapper {
        background: linear-gradient(165deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
        min-height: auto;
        }
        .contact-hero-block {
        padding: 5rem 1rem 3rem;
        background: linear-gradient(135deg, rgba(255, 129, 62, 0.08) 0%, rgba(21, 116, 208, 0.12) 100%);
        position: relative;
        overflow: hidden;
        }
        .contact-hero-block::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 129, 62, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        }
        .contact-hero-content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
        }
        .contact-hero-content h1 {
        font-size: 2.8rem;
        color: #f8f9fa;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        font-weight: 700;
        }
        .contact-hero-content h1::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #FF813E 0%, #1574D0 100%);
        margin: 1.5rem auto 0;
        border-radius: 2px;
        }
        .contact-hero-content p {
        font-size: 1.15rem;
        color: #e9ecef;
        line-height: 1.7;
        margin-top: 2rem;
        }
        .communication-grid-section {
        padding: 4rem 1rem;
        background: #1a1a1a;
        }
        .communication-container {
        max-width: 1200px;
        margin: 0 auto;
        }
        .grid-layout-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
        align-items: start;
        }
        .info-column-left {
        background: linear-gradient(145deg, #2c2c2c 0%, #343a40 100%);
        padding: 2.5rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 129, 62, 0.15);
        position: sticky;
        top: 2rem;
        }
        .info-column-left h2 {
        font-size: 1.8rem;
        color: #FF813E;
        margin-bottom: 1.8rem;
        font-weight: 600;
        }
        .info-column-left h2::before {
        content: '◆';
        display: inline-block;
        margin-right: 0.8rem;
        color: #1574D0;
        font-size: 0.9rem;
        }
        .detail-blocks-stack {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        }
        .detail-item-box {
        padding: 1.5rem;
        background: rgba(21, 116, 208, 0.06);
        border-radius: 8px;
        border-left: 3px solid #1574D0;
        transition: all 0.3s ease;
        }
        .detail-item-box:hover {
        background: rgba(21, 116, 208, 0.12);
        transform: translateX(5px);
        }
        .detail-item-box h3 {
        font-size: 1.1rem;
        color: #f8f9fa;
        margin-bottom: 0.8rem;
        font-weight: 600;
        }
        .detail-item-box p {
        font-size: 0.95rem;
        color: #e9ecef;
        line-height: 1.6;
        margin: 0;
        }
        .detail-item-box a {
        color: #FF813E;
        text-decoration: none;
        transition: color 0.3s ease;
        }
        .detail-item-box a:hover {
        color: #1574D0;
        text-decoration: underline;
        }
        .availability-note-box {
        margin-top: 2rem;
        padding: 1.2rem;
        background: rgba(255, 129, 62, 0.08);
        border-radius: 8px;
        border: 1px solid rgba(255, 129, 62, 0.2);
        }
        .availability-note-box p {
        font-size: 0.9rem;
        color: #f0f0f0;
        margin: 0;
        line-height: 1.5;
        }
        .form-column-right {
        background: #2c2c2c;
        padding: 2.8rem;
        border-radius: 12px;
        border: 1px solid rgba(240, 240, 240, 0.1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        .form-column-right h2 {
        font-size: 1.6rem;
        color: #f8f9fa;
        margin-bottom: 0.8rem;
        font-weight: 600;
        }
        .form-intro-text {
        font-size: 0.95rem;
        color: #e9ecef;
        margin-bottom: 2rem;
        line-height: 1.6;
        }
        .project-inquiry-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        }
        .form-field-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        }
        .form-field-wrapper label {
        font-size: 0.95rem;
        color: #f0f0f0;
        font-weight: 500;
        }
        .form-field-wrapper input,
        .form-field-wrapper select,
        .form-field-wrapper textarea {
        background: #343a40;
        border: 1px solid rgba(240, 240, 240, 0.15);
        border-radius: 6px;
        padding: 0.9rem 1rem;
        color: #f8f9fa;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        }
        .form-field-wrapper input:focus,
        .form-field-wrapper select:focus,
        .form-field-wrapper textarea:focus {
        outline: none;
        border-color: #FF813E;
        background: #3d4349;
        box-shadow: 0 0 0 3px rgba(255, 129, 62, 0.1);
        }
        .form-field-wrapper textarea {
        min-height: 130px;
        resize: vertical;
        font-family: inherit;
        }
        .form-field-wrapper input::placeholder,
        .form-field-wrapper textarea::placeholder {
        color: #adb5bd;
        }
        .dual-field-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        }
        .consent-checkbox-area {
        display: flex;
        align-items: start;
        gap: 0.8rem;
        margin-top: 0.5rem;
        padding: 1.2rem;
        background: rgba(21, 116, 208, 0.06);
        border-radius: 6px;
        }
        .consent-checkbox-area input[type="checkbox"] {
        margin-top: 0.25rem;
        width: 18px;
        height: 18px;
        cursor: pointer;
        flex-shrink: 0;
        }
        .consent-checkbox-area label {
        font-size: 0.88rem;
        color: #e9ecef;
        line-height: 1.5;
        cursor: pointer;
        }
        .consent-checkbox-area a {
        color: #FF813E;
        text-decoration: none;
        font-weight: 500;
        }
        .consent-checkbox-area a:hover {
        text-decoration: underline;
        color: #1574D0;
        }
        .submit-action-button {
        background: linear-gradient(135deg, #FF813E 0%, #1574D0 100%);
        color: #ffffff;
        border: none;
        padding: 1rem 2.5rem;
        border-radius: 8px;
        font-size: 1.05rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 0.8rem;
        box-shadow: 0 4px 12px rgba(255, 129, 62, 0.3);
        }
        .submit-action-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 129, 62, 0.4);
        }
        .submit-action-button:active {
        transform: translateY(0);
        }
        .visual-context-section {
        padding: 4rem 1rem;
        background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);
        position: relative;
        }
        .visual-context-section::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, #FF813E 50%, transparent 100%);
        }
        .context-container {
        max-width: 1100px;
        margin: 0 auto;
        }
        .context-content-wrapper {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 3rem;
        align-items: center;
        }
        .context-text-area h2 {
        font-size: 2rem;
        color: #f8f9fa;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        font-weight: 600;
        }
        .context-text-area h2::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 40px;
        background: linear-gradient(180deg, #FF813E 0%, #1574D0 100%);
        margin-right: 1rem;
        vertical-align: middle;
        border-radius: 3px;
        }
        .context-text-area p {
        font-size: 1.05rem;
        color: #e9ecef;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        }
        .context-text-area p:last-of-type {
        margin-bottom: 0;
        }
        .emphasis-highlight {
        color: #FF813E;
        font-weight: 600;
        }
        .context-image-area {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
        }
        .context-image-area::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 2px solid transparent;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(255, 129, 62, 0.4), rgba(21, 116, 208, 0.4)) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        }
        .context-image-area img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        }
        @media (max-width: 968px) {
        .grid-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        }
        .info-column-left {
        position: static;
        }
        .context-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        }
        .context-text-area {
        order: 2;
        }
        .context-image-area {
        order: 1;
        }
        }
        @media (max-width: 768px) {
        .contact-hero-content h1 {
        font-size: 2rem;
        }
        .contact-hero-content p {
        font-size: 1rem;
        }
        .form-column-right {
        padding: 2rem 1.5rem;
        }
        .dual-field-row {
        grid-template-columns: 1fr;
        }
        .contact-hero-block {
        padding: 3.5rem 1rem 2.5rem;
        }
        .context-text-area h2 {
        font-size: 1.6rem;
        }
        .context-text-area p {
        font-size: 0.98rem;
        }
        }
        @media (max-width: 480px) {
        .contact-hero-content h1 {
        font-size: 1.7rem;
        }
        .info-column-left {
        padding: 2rem 1.5rem;
        }
        .form-column-right {
        padding: 1.8rem 1.2rem;
        }
        .submit-action-button {
        width: 100%;
        padding: 1rem;
        }
        }