        :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%;
        }
        }
        .success-wrapper {
        background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
        min-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 3rem 1rem;
        position: relative;
        overflow: hidden;
        }
        .success-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 129, 62, 0.08) 0%, transparent 70%);
        animation: pulse-glow 8s ease-in-out infinite;
        }
        @keyframes pulse-glow {
        0%, 100% { transform: scale(1); opacity: 0.6; }
        50% { transform: scale(1.2); opacity: 0.3; }
        }
        .success-content-container {
        max-width: 720px;
        width: 100%;
        position: relative;
        z-index: 2;
        }
        .success-icon-area {
        text-align: center;
        margin-bottom: 2.5rem;
        position: relative;
        }
        .success-icon-circle {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        background: linear-gradient(135deg, #FF813E 0%, #1574D0 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        box-shadow: 0 20px 60px rgba(255, 129, 62, 0.3),
        0 0 0 15px rgba(255, 129, 62, 0.1),
        0 0 0 30px rgba(21, 116, 208, 0.05);
        animation: success-bounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        @keyframes success-bounce {
        0% { transform: scale(0) rotate(-180deg); opacity: 0; }
        60% { transform: scale(1.1) rotate(10deg); }
        100% { transform: scale(1) rotate(0deg); opacity: 1; }
        }
        .success-checkmark {
        width: 60px;
        height: 60px;
        position: relative;
        }
        .success-checkmark::after {
        content: '';
        position: absolute;
        left: 20px;
        top: 8px;
        width: 16px;
        height: 32px;
        border: solid #ffffff;
        border-width: 0 5px 5px 0;
        transform: rotate(45deg);
        animation: checkmark-draw 0.5s ease-out 0.3s forwards;
        opacity: 0;
        }
        @keyframes checkmark-draw {
        to { opacity: 1; }
        }
        .success-text-block {
        background: rgba(52, 58, 64, 0.6);
        border: 1px solid rgba(255, 129, 62, 0.2);
        border-radius: 16px;
        padding: 2.5rem;
        text-align: center;
        backdrop-filter: blur(10px);
        animation: fade-slide-up 0.6s ease-out 0.4s backwards;
        }
        @keyframes fade-slide-up {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
        }
        .success-main-heading {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 1rem 0;
        line-height: 1.2;
        position: relative;
        display: inline-block;
        }
        .success-main-heading::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #FF813E 0%, #1574D0 100%);
        border-radius: 2px;
        }
        .success-message-text {
        font-size: 1.1rem;
        color: #e9ecef;
        line-height: 1.7;
        margin: 2rem 0 2.5rem 0;
        }
        .success-detail-info {
        background: rgba(26, 26, 26, 0.5);
        border-left: 4px solid #FF813E;
        border-radius: 8px;
        padding: 1.5rem;
        margin: 2rem 0;
        text-align: left;
        }
        .success-detail-info p {
        margin: 0.75rem 0;
        color: #f8f9fa;
        font-size: 0.95rem;
        line-height: 1.6;
        }
        .success-detail-info p:first-child {
        margin-top: 0;
        }
        .success-detail-info p:last-child {
        margin-bottom: 0;
        }
        .success-detail-info strong {
        color: #FF813E;
        font-weight: 600;
        }
        .success-actions-row {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;
        }
        .success-btn-primary {
        background: linear-gradient(135deg, #FF813E 0%, #e67035 100%);
        color: #ffffff;
        padding: 0.9rem 2rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 4px 15px rgba(255, 129, 62, 0.3);
        position: relative;
        z-index: 10;
        }
        .success-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(255, 129, 62, 0.4);
        background: linear-gradient(135deg, #e67035 0%, #FF813E 100%);
        color: #ffffff;
        }
        .success-btn-secondary {
        background: transparent;
        color: #1574D0;
        padding: 0.9rem 2rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        border: 2px solid #1574D0;
        position: relative;
        z-index: 10;
        }
        .success-btn-secondary:hover {
        background: rgba(21, 116, 208, 0.1);
        transform: translateY(-2px);
        color: #1574D0;
        border-color: #1574D0;
        }
        .success-timeline-hint {
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(240, 240, 240, 0.1);
        }
        .success-timeline-hint h3 {
        color: #F0F0F0;
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 0 1rem 0;
        }
        .success-next-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
        }
        .success-step-item {
        background: rgba(21, 116, 208, 0.08);
        border: 1px solid rgba(21, 116, 208, 0.2);
        border-radius: 8px;
        padding: 1.25rem;
        text-align: left;
        }
        .success-step-number {
        display: inline-block;
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, #1574D0 0%, #0d5aa8 100%);
        color: #ffffff;
        border-radius: 50%;
        text-align: center;
        line-height: 28px;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        }
        .success-step-item h4 {
        color: #ffffff;
        font-size: 0.95rem;
        font-weight: 600;
        margin: 0 0 0.5rem 0;
        }
        .success-step-item p {
        color: #e9ecef;
        font-size: 0.85rem;
        line-height: 1.5;
        margin: 0;
        }
        @media (max-width: 768px) {
        .success-wrapper {
        padding: 2rem 1rem;
        min-height: auto;
        }
        .success-icon-circle {
        width: 100px;
        height: 100px;
        }
        .success-checkmark {
        width: 50px;
        height: 50px;
        }
        .success-checkmark::after {
        left: 16px;
        top: 6px;
        width: 14px;
        height: 28px;
        border-width: 0 4px 4px 0;
        }
        .success-text-block {
        padding: 2rem 1.5rem;
        }
        .success-main-heading {
        font-size: 2rem;
        }
        .success-message-text {
        font-size: 1rem;
        }
        .success-actions-row {
        flex-direction: column;
        align-items: stretch;
        }
        .success-btn-primary,
        .success-btn-secondary {
        width: 100%;
        justify-content: center;
        }
        .success-next-steps {
        grid-template-columns: 1fr;
        }
        }
        @media (max-width: 480px) {
        .success-main-heading {
        font-size: 1.75rem;
        }
        .success-detail-info {
        padding: 1.25rem;
        }
        .success-step-item {
        padding: 1rem;
        }
        }