        :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%;
        }
        }
        .ooredoo-privacy-container {
        background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #343a40 100%);
        color: #f8f9fa;
        max-width: 860px;
        margin: 40px auto;
        padding: 48px 32px 64px 32px;
        border-radius: 22px;
        box-shadow: 0 8px 32px 0 rgba(20,24,32,0.35), 0 2px 8px 0 #1119;
        font-family: 'Segoe UI', 'Arial', sans-serif;
        font-size: 1.06rem;
        letter-spacing: 0.01em;
        }
        .ooredoo-privacy-container h1 {
        color: #FF813E;
        font-size: 2.6rem;
        font-weight: 700;
        margin-bottom: 18px;
        letter-spacing: 0.04em;
        text-shadow: 0 2px 18px #2c2c2c77, 0 1px 0 #1574D0;
        }
        .ooredoo-privacy-container h2 {
        color: #1574D0;
        font-size: 1.5rem;
        margin: 42px 0 18px 0;
        border-left: 6px solid #FF813E;
        padding-left: 14px;
        letter-spacing: 0.02em;
        text-shadow: 0 1px 6px #1a1a1a88;
        }
        .ooredoo-privacy-container h3 {
        color: #FF813E;
        margin: 32px 0 14px 0;
        font-size: 1.13rem;
        padding-left: 8px;
        border-left: 4px solid #1574D0;
        text-shadow: 0 1px 4px #2228;
        }
        .ooredoo-privacy-container p {
        margin-bottom: 15px;
        line-height: 1.8;
        color: #e9ecef;
        text-shadow: 0 1px 2px #222a;
        }
        .ooredoo-privacy-container ul {
        background: linear-gradient(90deg,#232629 40%, #343a40 100%);
        border-radius: 12px;
        margin: 20px 0 24px 0;
        padding: 24px 28px 24px 36px;
        box-shadow: 0 2px 6px #1115;
        }
        .ooredoo-privacy-container li {
        color: #f0f0f0;
        margin-bottom: 14px;
        line-height: 1.7;
        font-size: 1.03rem;
        text-shadow: 0 1px 3px #1119;
        }
        .ooredoo-privacy-container span {
        color: #F0F0F0;
        }
        .ooredoo-privacy-container strong {
        color: #FF813E;
        font-weight: 600;
        }
        .ooredoo-privacy-container .accent {
        color: #1574D0;
        font-weight: 600;
        }
        .ooredoo-privacy-container .highlight {
        background: linear-gradient(90deg,#1574D0 0,#FF813E 100%);
        color: #fff;
        padding: 1px 7px;
        border-radius: 5px;
        font-weight: 500;
        box-shadow: 0 2px 8px #FF813E22;
        }
        @media (max-width: 600px) {
        .ooredoo-privacy-container {
        padding: 18px 4vw 40px 4vw;
        font-size: 0.98rem;
        }
        .ooredoo-privacy-container ul {
        padding: 16px 10px 16px 16px;
        }
        .ooredoo-privacy-container h1 {
        font-size: 2rem;
        }
        .ooredoo-privacy-container h2 {
        font-size: 1.17rem;
        }
        }