* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            padding-top: 80px;
            background: var(--gradient-body);
        }

        /* ===== Hero Section ===== */
        .hero-section {
            position: relative;
            min-height: 350px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(31, 58, 90, 0.6) 0%, rgba(111, 188, 50, 0.4) 100%);
            backdrop-filter: blur(2px);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            animation: slideInDown 0.8s ease-out;
        }

        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
        }

        .hero-content h2 {
            font-size: 1.5rem;
            font-weight: 400;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        /* ===== About Content Section ===== */
        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 40px;
            background: linear-gradient(135deg, #fbfcf9 0%, #f5faf2 100%);
        }

        .about-intro {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.6s ease-out;
        }

        .about-intro h2 {
            font-size: 2.5rem;
            color: #1a3a5a;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .about-intro::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #6fbc32, #7ec850);
            margin: 20px auto;
        }

        .about-intro p {
            color: #666;
            font-size: 1rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-intro strong {
            color: #6fbc32;
            font-weight: 700;
        }

        /* ===== Story Section ===== */
        .story-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
            align-items: center;
        }

        .story-image {
            order: -1;
        }

        .story-text h3 {
            font-size: 1.8rem;
            color: #1a3a5a;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .story-text p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .story-text strong {
            color: #6fbc32;
        }

        .story-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(111, 188, 50, 0.2);
        }

        /* ===== Vision & Mission Section ===== */
        .vm-section {
            background: linear-gradient(135deg, #f5faf2 0%, #fbfcf9 100%);
            padding: 60px 40px;
            margin: 20px 0;
        }

        .vm-title {
            text-align: center;
            font-size: 2.5rem;
            color: #1a3a5a;
            margin-bottom: 60px;
            font-weight: 700;
            animation: fadeInDown 0.6s ease-out;
        }

        .vm-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #6fbc32, #7ec850);
            margin: 20px auto;
        }

        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .vm-card {
            background: linear-gradient(135deg, #fbfcf9 0%, #f5faf2 100%);
            padding: 40px 30px;
            border: 2px solid #6fbc32;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: slideInUp 0.6s ease-out;
        }

        .vm-card:nth-child(1) { animation-delay: 0s; }
        .vm-card:nth-child(2) { animation-delay: 0.2s; }

        .vm-card:hover {
            transform: translateY(-10px);
            border-color: #7ec850;
            box-shadow: 0 20px 40px rgba(111, 188, 50, 0.2);
        }

        .vm-card i {
            font-size: 3rem;
            color: #6fbc32;
            margin-bottom: 20px;
        }

        .vm-card h3 {
            font-size: 1.5rem;
            color: #1a3a5a;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .vm-card p {
            color: #666;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* ===== Animations ===== */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 900px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content h2 {
                font-size: 1rem;
            }

            .about-intro h2 {
                font-size: 2rem;
            }

            .story-section {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .story-image {
                order: 0;
            }

            .vm-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .about-content {
                padding: 40px 20px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 80px;
            }

            .hero-section {
                min-height: 280px;
            }

            .hero-content h1 {
                font-size: 1.5rem;
            }

            .hero-content h2 {
                font-size: 0.9rem;
            }

            .about-intro h2 {
                font-size: 1.5rem;
            }

            .story-text h3 {
                font-size: 1.3rem;
            }

            .about-content {
                padding: 40px 20px;
            }

            .story-section,
            .vm-section {
                padding: 40px 20px;
            }

            .vm-grid {
                gap: 15px;
            }

            .vm-card {
                padding: 20px;
            }

            .vm-card i {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding-top: 70px;
            }

            .hero-section {
                min-height: 240px;
            }

            .hero-content h1 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }

            .hero-content h2 {
                font-size: 0.85rem;
            }

            .about-content,
            .vm-section {
                padding: 30px 15px;
            }

            .about-intro h2 {
                font-size: 1.3rem;
            }

            .story-text h3 {
                font-size: 1.1rem;
            }

            .story-text p {
                font-size: 0.85rem;
            }

            .vm-title {
                font-size: 1.3rem;
            }

            .vm-card {
                padding: 15px;
            }

            .vm-card h3 {
                font-size: 1.1rem;
            }

            .vm-card p {
                font-size: 0.85rem;
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-green);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-green-light);
        }

        /* ===== Dark Mode Overrides ===== */
        html[data-theme="dark"] .about-content {
            background: var(--gradient-body);
        }
        html[data-theme="dark"] .about-intro h2,
        html[data-theme="dark"] .story-text h3,
        html[data-theme="dark"] .vm-title,
        html[data-theme="dark"] .vm-card h3 {
            color: var(--text-primary);
        }
        html[data-theme="dark"] .about-intro p,
        html[data-theme="dark"] .story-text p,
        html[data-theme="dark"] .vm-card p {
            color: var(--text-secondary);
        }
        html[data-theme="dark"] .about-intro strong,
        html[data-theme="dark"] .story-text strong {
            color: var(--accent-gold);
        }
        html[data-theme="dark"] .about-intro::after,
        html[data-theme="dark"] .vm-title::after {
            background: linear-gradient(90deg, var(--accent-gold), #e6c25a);
        }
        html[data-theme="dark"] .vm-section {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
        }
        html[data-theme="dark"] .vm-card {
            background: var(--bg-card);
            border-color: var(--accent-gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        html[data-theme="dark"] .vm-card:hover {
            border-color: #e6c25a;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
        }
        html[data-theme="dark"] .vm-card i {
            color: var(--accent-gold);
        }
        html[data-theme="dark"] .story-image img {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }