
        /* الأساسيات والخطوط */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Changa', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            direction: rtl;
            text-align: right;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* الألوان الأساسية */
        :root {
            --primary-color: #1a5e1a;
            --secondary-color: #2d8b2d;
            --accent-color: #f0f7f0;
            --text-dark: #333;
            --text-light: #fff;
            --bg-light: #fff;
            --bg-dark: #1a3c1a;
        }
        
        /* --- الهيدر (القائمة العلوية) --- */
        header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo h1 {
            font-size: 2.2rem;
            margin-bottom: 5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .logo p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .main-nav {
            display: flex;
            gap: 20px;
        }
        
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            padding: 5px 10px;
            border-radius: 5px;
        }
        
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .btn-primary {
            background-color: white;
            color: var(--primary-color);
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary:hover {
            background-color: var(--accent-color);
            transform: scale(1.05);
        }
        
        .contact-info {
            background-color: var(--accent-color);
            padding: 15px;
            border-radius: 10px;
            margin: 20px auto;
            text-align: center;
            max-width: 500px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .contact-info a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* --- سلايدر الأنشطة (Hero Section) --- */
        .hero-slider {
            position: relative;
            height: 600px;
            background-size: cover;
            background-position: center;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            display: flex;
            align-items: center;
            justify-content: flex-end;
            color: var(--text-light);
            text-align: right;
            padding: 0 10%;
            margin-bottom: 40px;
            border-radius: 10px;
        }
        
        .slide-content {
            background: rgba(0, 0, 0, 0.6);
            padding: 30px;
            border-radius: 8px;
            max-width: 600px;
        }
        
        .slide-content h1 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .btn-watch {
            background-color: var(--secondary-color);
            padding: 10px 25px;
            color: var(--text-light);
            border-radius: 5px;
            display: inline-block;
            margin-top: 15px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn-watch:hover {
            background-color: var(--primary-color);
        }
        
        /* --- الخدمات والأنشطة --- */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border-top: 4px solid var(--secondary-color);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        }
        
        .service-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .service-card p {
            color: #555;
            font-size: 0.95rem;
        }
        
        .section-title {
            text-align: center;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 40px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--primary-color);
            display: inline-block;
            width: 100%;
        }
        
        /* --- مشاريع التبرع --- */
        .donation-projects {
            margin: 40px 0;
        }
        
        .project-options-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .project-card {
            background-color: var(--bg-light);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            padding: 25px;
            border-top: 4px solid var(--secondary-color);
        }
        
        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .project-card h3 {
            color: var(--primary-color);
            font-size: 1.5em;
            margin: 10px 0;
        }
        
        .project-icon {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .project-amount {
            display: block;
            font-weight: 700;
            color: #dc3545;
            margin: 10px 0 20px;
            font-size: 1.2rem;
        }
        
        .btn-donate {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
            width: 100%;
        }
        
        .btn-donate:hover {
            background-color: var(--secondary-color);
        }
        
        /* --- قسم التبرع الرئيسي --- */
        .donation-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            padding: 40px 20px;
            border-radius: 15px;
            text-align: center;
            margin: 40px 0;
        }
        
        .donation-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .donation-section p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 25px;
        }
        
        .donate-btn {
            display: inline-block;
            background-color: white;
            color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .donate-btn:hover {
            background-color: var(--accent-color);
            transform: scale(1.05);
        }
        
        /* --- قسم الإنجازات --- */
        .achievements {
            background-color: #e9ecef;
            padding: 60px 0;
            margin-bottom: 40px;
            border-radius: 15px;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            text-align: center;
        }
        
        .stat-box {
            padding: 20px;
            margin: 10px;
            flex-basis: 30%;
        }
        
        .stat-box i {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .stat-number {
            font-size: 3em;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }
        
        .stat-label {
            font-size: 1.1em;
            color: #666;
        }
        
        /* --- النماذج --- */
        .forms-area {
            margin: 40px 0;
        }
        
        .forms-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .form-card {
            background-color: var(--bg-light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--secondary-color);
        }
        
        .form-title {
            color: var(--primary-color);
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .form-card label {
            display: block;
            margin-bottom: 5px;
            font-weight: 700;
            color: var(--text-dark);
        }
        
        .form-card input[type="text"],
        .form-card input[type="tel"],
        .form-card input[type="email"],
        .form-card select,
        .form-card textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
            font-family: 'Changa', sans-serif;
        }
        
        .form-card textarea {
            resize: vertical;
        }
        
        .btn-submit {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
            width: 100%;
            font-family: 'Changa', sans-serif;
            font-size: 1rem;
        }
        
        .btn-submit:hover {
            background-color: var(--secondary-color);
        }
        
        /* --- الفوتر --- */
        footer {
            background-color: var(--bg-dark);
            color: white;
            text-align: center;
            padding: 25px 0;
            margin-top: 40px;
            border-radius: 15px 15px 0 0;
        }
        
        .social-links {
            margin-top: 15px;
        }
        
        .social-links a {
            color: white;
            margin: 0 10px;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: var(--accent-color);
        }
        
        /* --- الاستجابة (Responsive Design) --- */
        @media (max-width: 900px) {
            .forms-container {
                grid-template-columns: 1fr;
            }
            
            .main-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .main-nav {
                margin-top: 15px;
                margin-bottom: 15px;
                flex-wrap: wrap;
            }
            
            .stats-container {
                flex-direction: column;
            }
            
            .stat-box {
                flex-basis: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .logo h1 {
                font-size: 1.8rem;
            }
            
            .services, .project-options-container {
                grid-template-columns: 1fr;
            }
            
            .service-card, .project-card {
                padding: 20px;
            }
            
            .hero-slider {
                height: 300px;
                padding: 0 5%;
            }
            
            .slide-content h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
        }
    