 :root {
            --primary-color: #0d6efd;
            --primary-dark: #0a58ca;
            --secondary-color: #198754;
            --accent-color: #fd7e14;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --text-color: #333;
            --gray-light: #e9ecef;
            --gray-dark: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }

        body {
            direction: rtl;
            background-color: #f5f7fa;
            color: var(--text-color);
            line-height: 1.6;
        }

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

        /* قسم الهيرو الداخلي */
        .page-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .page-hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .page-hero p {
            font-size: 18px;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .breadcrumb {
            margin-top: 20px;
            font-size: 14px;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            opacity: 1;
        }
        
        .breadcrumb span {
            margin: 0 5px;
        }

        /* محتوى الصفحة */
        .about-section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 800;
        }
        
        .section-title p {
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 2px;
        }
        
        /* بطاقات القيم */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .value-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--gray-light);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 32px;
        }
        
        .value-card h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: var(--gray-dark);
            line-height: 1.7;
        }
        
        /* قسم قصتنا */
        .story-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }
        
        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .story-text h3 {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .story-text p {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .story-image {
            text-align: center;
        }
        
        .story-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        
        .story-image-placeholder {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 20px;
            padding: 60px;
            color: white;
            text-align: center;
        }
        
        .story-image-placeholder i {
            font-size: 64px;
            margin-bottom: 15px;
        }
        
        /* قسم الفريق */
        .team-section {
            background: var(--light-color);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .team-avatar {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto 20px;
            color: white;
            font-size: 48px;
            font-weight: bold;
        }
        
        .team-card h4 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .team-card .position {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .team-card .bio {
            padding: 0 20px 20px;
            color: var(--gray-dark);
            font-size: 14px;
        }
        
        /* قسم الإحصائيات */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 20px;
            padding: 60px 40px;
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            opacity: 0.9;
        }
        
        /* قسم CTA */
        .cta-section {
            text-align: center;
            padding: 60px 0;
            background: white;
            border-radius: 20px;
            margin-top: 20px;
        }
        
        .cta-section h3 {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .cta-section p {
            font-size: 18px;
            color: var(--gray-dark);
            margin-bottom: 30px;
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: var(--transition);
            display: inline-block;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
        }
        
        /* التجاوب */
        @media (max-width: 992px) {
            .story-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .page-hero h1 {
                font-size: 32px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .about-section {
                padding: 40px 0;
            }
            
            .story-section,
            .team-section,
            .stats-section {
                padding: 30px 20px;
            }
            
            .stat-number {
                font-size: 36px;
            }
            
            .value-card {
                padding: 20px;
            }
        }
