        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #0e9eff;
            --primary-dark: #0077cc;
            --text-dark: #1a1a1a;
            --text-gray: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 2px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(14, 158, 255, 0.15);
            --gradient: linear-gradient(135deg, #0e9eff 0%, #0077cc 100%);
        }

        body {
            font-family: 'Cairo', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: var(--gradient);
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .hero p {
            font-size: 22px;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Section */
        .section {
            padding: 90px 0;
        }

        .section-light {
            background: var(--bg-light);
        }

        /* Story Section */
        .story-section {
            background: var(--white);
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .story-image {
            width: 100%;
            height: 500px;
            background: var(--gradient);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            color: white;
            box-shadow: var(--shadow-lg);
        }

        .story-text h2 {
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 30px;
            color: var(--text-dark);
        }

        .story-text p {
            font-size: 18px;
            line-height: 2;
            color: var(--text-dark);
            margin-bottom: 25px;
        }

        .highlight-text {
            background: linear-gradient(135deg, rgba(14, 158, 255, 0.1) 0%, rgba(14, 158, 255, 0.2) 100%);
            padding: 25px;
            border-right: 4px solid var(--primary-color);
            border-radius: 10px;
            margin: 30px 0;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* Values Section */
        .values-section {
            text-align: center;
        }

        .section-header {
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 42px;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            background: var(--white);
            padding: 45px 35px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .value-card:hover::before {
            transform: scaleX(1);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            box-shadow: 0 10px 30px rgba(14, 158, 255, 0.3);
        }

        .value-card h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .value-card p {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* Why Choose Us */
        .why-section {
            background: linear-gradient(135deg, rgba(14, 158, 255, 0.05) 0%, rgba(14, 158, 255, 0.1) 100%);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .why-item {
            background: var(--white);
            padding: 35px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            display: flex;
            gap: 25px;
            align-items: flex-start;
            transition: all 0.3s;
        }

        .why-item:hover {
            transform: translateX(-5px);
            box-shadow: var(--shadow-lg);
        }

        .why-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            flex-shrink: 0;
        }

        .why-content h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .why-content p {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Stats Section */
        .stats-section {
            background: var(--gradient);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 18px;
            opacity: 0.95;
        }

        /* Mission Section */
        .mission-section {
            background: var(--white);
        }

        .mission-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .mission-icon {
            width: 120px;
            height: 120px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: white;
            margin: 0 auto 40px;
            box-shadow: 0 15px 40px rgba(14, 158, 255, 0.3);
        }

        .mission-content h2 {
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 30px;
            color: var(--text-dark);
        }

        .mission-content p {
            font-size: 20px;
            line-height: 2;
            color: var(--text-dark);
            margin-bottom: 25px;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .btn {
            display: inline-block;
            padding: 16px 45px;
            background: var(--white);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s;
            font-size: 16px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }

        /* Team Section */
        .team-section {
            background: var(--bg-light);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .team-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .team-image {
            width: 100%;
            height: 280px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: white;
        }

        .team-info {
            padding: 30px;
        }

        .team-info h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .team-info p {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 15px;
        }

        .team-info span {
            display: inline-block;
            background: rgba(14, 158, 255, 0.1);
            color: var(--primary-color);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .story-content {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero h1 {
                font-size: 38px;
            }

            .section-header h2,
            .story-text h2,
            .mission-content h2,
            .cta-section h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .stat-number {
                font-size: 40px;
            }

            .section {
                padding: 60px 0;
            }

            .story-image {
                height: 350px;
                font-size: 80px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
