:root {
            --primary-blue: #0f2766;
            --primary-dark: #121e3d;
            --accent-red: #e11d48;
            --accent-red-hover: #be123c;
            --text-dark: #1f2937;
            --text-muted: #6b7280;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
}

        .flag-icon {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* About Section Styles */
        .about-section {
            background-color: var(--bg-white);
            overflow: hidden;
        }

        .about-banner {
            position: relative;
            padding: 380px 0;
            background-size: cover !important;
            background-position: center !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-banner-title {
            font-size: 3rem;
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .about-banner-desc {
            font-size: 1.3rem;
            font-weight: 500;
            max-width: 850px;
            line-height: 1.8;
            opacity: 0.95;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .about-img-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: visible;
        }

        .about-img-wrapper img {
            border-radius: 24px !important;
        }

        .about-img-wrapper div {
            border-radius: 24px !important;
        }

        .about-badge {
            position: absolute;
            bottom: -15px;
            right: -15px;
            background-color: var(--accent-red);
            color: #ffffff;
            padding: 15px 25px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
            z-index: 5;
            min-width: 120px;
        }

        .badge-number {
            font-size: 24px;
            font-weight: 800;
            line-height: 1.2;
        }

        .badge-text {
            font-size: 13px;
            font-weight: 600;
        }

        .badge-target {
            background-color: var(--accent-red);
            color: #ffffff;
            font-weight: 700;
            font-size: 14px;
            padding: 6px 20px;
            border-radius: 8px;
            display: inline-block;
        }

        .about-heading {
            color: var(--primary-blue);
            font-size: 2.25rem;
            font-weight: 800;
            line-height: 1.4;
        }

        .about-text {
            color: #475569;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Values Section Styles */
        .values-section {
            background-color: #faf8f5;
            padding: 80px 0;
            text-align: center;
        }

        .values-title {
            color: var(--primary-blue);
            font-size: 2.25rem;
            font-weight: 800;
            position: relative;
            display: inline-block;
            margin-bottom: 50px;
        }

        .values-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-red);
            border-radius: 2px;
        }

        .value-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .value-card.highlighted {
            border: 2px solid var(--primary-blue);
            box-shadow: 0 10px 30px rgba(15, 39, 102, 0.08);
        }

        .value-icon-wrapper {
            font-size: 40px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border-radius: 50%;
        }

        .value-card.highlighted .value-icon-wrapper {
            background-color: rgba(15, 39, 102, 0.05);
        }

        .value-card-title {
            color: var(--primary-blue);
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .value-card-text {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Why Choose Section Styles */
        .why-choose-section {
            background-color: var(--bg-white);
            padding: 80px 0;
        }

        .why-choose-title {
            color: var(--primary-blue);
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .why-choose-text {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .btn-choose {
            background-color: #0b1530;
            color: var(--bg-white);
            font-weight: 700;
            padding: 12px 36px;
            border-radius: 8px;
            text-decoration: none;
            transition: var(--transition-smooth);
            display: inline-block;
        }

        .btn-choose:hover {
            background-color: var(--primary-dark);
            color: var(--bg-white);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(15, 39, 102, 0.15);
        }

        .why-card {
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            background-color: var(--bg-white);
            transition: var(--transition-smooth);
            height: 100%;
        }

        .why-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
            border-color: rgba(15, 39, 102, 0.1);
        }

        .why-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
        }

        .why-icon {
            font-size: 24px;
            color: var(--primary-blue);
        }

        .why-card-title {
            color: var(--primary-blue);
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0;
        }

        .why-card-text {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Cultural Commitment Section Styles */
        .cultural-commitment-section {
            background: linear-gradient(135deg, #070f24 0%, #0f2766 100%);
            color: var(--bg-white);
            padding: 90px 0;
            position: relative;
            overflow: hidden;
        }

        .cultural-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.8;
            pointer-events: none;
        }

        .cultural-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 50px;
        }

        .commitment-col {
            padding: 0 20px;
        }

        .commitment-subtitle {
            color: var(--accent-red);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .commitment-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.8;
            margin: 0;
        }

        /* Footer */
        footer {
            background-color: #ffffff;
            color: #475569;
            padding: 60px 0 30px;
            border-top: 1px solid #e2e8f0;
        }

        footer h5 {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 20px;
        }

        footer a {
            color: #64748b;
            font-size: 14px;
            text-decoration: none;
            transition: var(--transition-smooth);
            display: inline-block;
            margin-bottom: 12px;
        }

        footer a:hover {
            color: var(--accent-red);
            transform: translateX(-5px);
        }

        .footer-text {
            color: #64748b;
            font-size: 14px;
            margin-top: 5px;
        }

        @media (max-width: 991px) {
            body {
                padding-top: 80px;
            }
            .about-banner-title {
                font-size: 2.25rem;
            }
            .about-banner-desc {
                font-size: 1.1rem;
            }
            .about-heading {
                font-size: 1.75rem;
            }
        }
