  :root {
            --primary-color: #0d6efd;
            --secondary-color: #198754;
            --accent-color: #fd7e14;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --text-color: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --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 15px;
        }

        /* قسم الهيرو */
        .hero {
            background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .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;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-button-large {
            background: white;
            color: var(--primary-color);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: var(--transition);
            display: inline-block;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .cta-button-large:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        /* قسم الإحصائيات */
        .statistics-area {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 60px 0;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .align-items-start {
            align-items: flex-start;
        }

        .col-lg-6, .col-md-12 {
            padding: 0 15px;
        }

        .col-lg-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .col-md-12 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .right-side {
            margin-bottom: 40px;
        }

        .items {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .items:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .icon-container {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            color: white;
        }

        .icon-1 { background: var(--primary-color); }
        .icon-2 { background: var(--secondary-color); }
        .icon-3 { background: var(--accent-color); }

        .items i { font-size: 1.5rem; }

        .statistics {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.2rem;
        }

        .text-center { text-align: center; }
        .mt-4 { margin-top: 1.5rem; }

        .col-md-3, .col-6 { padding: 0 15px; }
        .col-md-3 { flex: 0 0 25%; max-width: 25%; }
        .col-6 { flex: 0 0 50%; max-width: 50%; }

        h5 {
            font-size: 2rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 5px;
        }

        h6 {
            font-size: 1rem;
            color: var(--dark-color);
            font-weight: 600;
        }

        /* قسم تعميد يخدم أكثر من 80% */
        .invoicing-area {
            padding: 60px 0;
            background: white;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }

        .invoicing-content {
            padding: 0 20px;
        }

        .invoicing-content h2 {
            color: var(--dark-color);
            font-weight: 800;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .invoicing-content h2 span { color: var(--accent-color); }

        .bar {
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            margin: 15px 0 25px;
            border-radius: 2px;
        }

        .invoicing-content p {
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .logo-zakat {
            background: var(--secondary-color);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* قسم المميزات */
        .benefits-section {
            background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
            padding: 80px 0;
            border-radius: 20px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .accent-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(6px);
            color: white;
            padding: 8px 20px;
            border-radius: 15px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .section-title {
            color: white;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .section-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 30px;
            padding: 30px;
            transition: var(--transition);
            cursor: pointer;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .benefit-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            box-shadow: inset 0 0 13px -8px rgba(133, 184, 242, 0.7);
        }

        .benefit-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .benefit-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .benefit-description {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .features-scroll {
            display: flex;
            width: 100%;
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
            padding: 10px 0;
        }

        .features-scroll-inner {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        .feature-tag {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 12px 25px;
            margin: 0 10px;
            display: flex;
            align-items: center;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .feature-tag h3 {
            color: white;
            font-size: 1rem;
            font-weight: 700;
            margin: 0;
        }

        .feature-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: linear-gradient(132deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 210%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            box-shadow: inset 0 0 8px -5px rgba(133, 184, 242, 0.7);
        }

        .feature-icon i {
            font-size: 0.9rem;
            color: white;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* قسم كيف تعمل */
        .section {
            padding: 80px 0;
        }
        
        .section-title-dark {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title-dark h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 800;
        }
        
        .section-title-dark p {
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        .section-title-dark::after {
            content: "";
            position: absolute;
            bottom: -15px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
            border-radius: 2px;
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .step {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border-top: 5px solid var(--primary-color);
        }
        
        .step:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 32px;
        }
        
        .step h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* قسم الإحصائيات الثانية */
        .stats {
            background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            opacity: 0.9;
        }

        /* قسم CTA */
        .cta-section {
            background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .cta-section p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* قسم آراء العملاء */
        .testimonials {
            background: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .testimonial::before {
            content: "\201C";
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 60px;
            color: var(--primary-color);
            opacity: 0.2;
            font-family: Georgia, serif;
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-left: 15px;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .stars {
            color: gold;
            margin-top: 5px;
        }

        /* نموذج الطلب */
        .form-container {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            max-width: 800px;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-color);
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #e1e5eb;
            border-radius: 10px;
            font-size: 16px;
            transition: var(--transition);
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.2);
            outline: none;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .required::after {
            content: " *";
            color: #e74c3c;
        }

        .form-text {
            display: block;
            margin-top: 5px;
            font-size: 12px;
            color: #6c757d;
            font-style: italic;
        }

        .terms-container {
            margin: 30px 0;
            padding: 20px;
            background-color: var(--light-color);
            border-radius: 10px;
            border: 1px solid #e1e5eb;
        }

        .terms-title {
            margin-bottom: 15px;
            color: var(--primary-color);
            text-align: center;
            font-size: 20px;
            font-weight: 700;
        }

        .terms-content {
            max-height: 300px;
            overflow-y: auto;
            padding: 15px;
            background: white;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .term-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #e1e5eb;
        }

        .term-item:last-child {
            border-bottom: none;
        }

        .term-item h4 {
            color: var(--primary-color);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: white;
            border-radius: 10px;
            border: 2px solid #e1e5eb;
        }

        .checkbox-group input {
            width: auto;
            margin-left: 10px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(44, 90, 160, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(44, 90, 160, 0.4);
        }

        .client-welcome {
            background: #e8f4fd;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
            border-right: 4px solid var(--primary-color);
        }

        .client-welcome h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        /* التصميم المتجاوب */
        @media (max-width: 992px) {
            .col-lg-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title-dark h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .col-md-3 {
                flex: 0 0 50%;
                max-width: 50%;
                margin-bottom: 20px;
            }
            
            h5 {
                font-size: 1.5rem;
            }
            
            .invoicing-content h2 {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .benefit-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .benefit-icon {
                margin-left: 0;
                margin-bottom: 15px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .form-container {
                padding: 20px;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            
            
            
            
    
        :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;
            }
    
            
            
            
            
            
    
        :root {
            --primary-color: #0d6efd;
            --secondary-color: #198754;
            --accent-color: #fd7e14;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --text-color: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --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 15px;
        }

        /* قسم الهيرو الداخلي */
        .page-hero {
            background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .page-hero h1 {
            font-size: 36px;
            margin-bottom: 15px;
            font-weight: 800;
        }
        
        .page-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .breadcrumb {
            margin-top: 15px;
            font-size: 14px;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
        }
        
        .breadcrumb span {
            margin: 0 5px;
        }

        /* نموذج الطلب */
        .section {
            padding: 40px 0 80px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .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;
        }

        .form-container {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            max-width: 900px;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-color);
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #e1e5eb;
            border-radius: 10px;
            font-size: 16px;
            transition: var(--transition);
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
            outline: none;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .required::after {
            content: " *";
            color: #e74c3c;
        }

        .form-text {
            display: block;
            margin-top: 5px;
            font-size: 12px;
            color: #6c757d;
        }

        .terms-container {
            margin: 30px 0;
            padding: 20px;
            background-color: var(--light-color);
            border-radius: 10px;
            border: 1px solid #e1e5eb;
        }

        .terms-title {
            margin-bottom: 15px;
            color: var(--primary-color);
            text-align: center;
            font-size: 20px;
            font-weight: 700;
        }

        .terms-content {
            max-height: 300px;
            overflow-y: auto;
            padding: 15px;
            background: white;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .term-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #e1e5eb;
        }

        .term-item:last-child {
            border-bottom: none;
        }

        .term-item h4 {
            color: var(--primary-color);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: white;
            border-radius: 10px;
            border: 2px solid #e1e5eb;
        }

        .checkbox-group input {
            width: auto;
            margin-left: 10px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(13, 110, 253, 0.4);
        }

        .info-box {
            background: #e8f4fd;
            border-right: 4px solid var(--primary-color);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .info-box h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .info-box ul {
            margin-right: 20px;
        }
        
        .info-box li {
            margin-bottom: 8px;
        }

        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 28px;
            }
            
            .form-container {
                padding: 20px;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
        }

            
            
            
            
            
            
            
            
        }
