

**ملف CSS (main.min.css):**
```css
/* الأساسيات */
:root {
    --primary-color: #637257;
    --secondary-color: #8a9d71;
    --accent-color: #ffd700;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
}

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

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    direction: rtl;
}

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* شريط الترويج */
        .promo_banner {
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
            padding: 12px 0;
            font-weight: bold;
            font-size: 16px;
        }
        
        /* شريط التنقل الفرعي */
        .subheader {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .subheader_container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }
        
        .hamburger_menu {
            background: none;
            border: none;
            cursor: pointer;
            display: none;
            flex-direction: column;
            justify-content: space-between;
            height: 24px;
            width: 30px;
            padding: 0;
        }
        
        .hamburger_line {
            background-color: var(--primary-color);
            height: 3px;
            width: 100%;
            border-radius: 3px;
        }
        
        .subheader_nav {
            display: flex;
            gap: 25px;
        }
        
        .nav_link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }
        
        .nav_link:hover {
            color: var(--primary-color);
        }
        
        .nav_link:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }
        
        .nav_link:hover:after {
            width: 100%;
        }
        
        /* مسار التصفح */
        .main-breadcrumb {
            background-color: #f5f5f5;
            padding: 10px 0;
        }
        
        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .main-breadcrumb ol {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }
        
        .main-breadcrumb li {
            display: flex;
            align-items: center;
        }
        
        .main-breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 14px;
        }
        
        .main-breadcrumb .separator {
            margin: 0 8px;
            color: #999;
        }
/* الشريط الترويجي */

/* الهيدر */
/* قسم البطل */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 1rem;
    background: var(--light-bg);
}

.hero-content {
    align-self: center;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* الأزرار */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* التكيف مع الجوال */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

        /* أنماط الأقسام */
        .section {
            margin-bottom: 50px;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .section-title {
            color: #637257;
            font-size: 28px;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 3px;
            background: #637257;
        }
        
        /* أنماط الفيديو */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            margin: 30px 0;
            border-radius: 10px;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* أنماط الدليل المجاني */
        .free-guide {
            background: linear-gradient(135deg, #637257 0%, #8a9d71 100%);
            color: white;
            text-align: center;
            padding: 40px 30px;
            border-radius: 10px;
        }
        
        .guide-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }
        
        .guide-features {
            text-align: right;
            list-style-type: none;
            padding: 0;
            margin: 25px 0;
        }
        
        .guide-features li {
            margin-bottom: 10px;
            position: relative;
            padding-right: 25px;
        }
        
        .guide-features li:before {
            content: "✓";
            position: absolute;
            right: 0;
            color: #ffd700;
        }
        
        .download-btn {
            display: inline-flex;
            align-items: center;
            background: white;
            color: #637257;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .download-icon {
            margin-left: 8px;
            width: 20px;
            height: 20px;
        }
        
        /* أنماط ميزات المتجر */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            text-align: center;
            padding: 25px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f7f2;
            border-radius: 50%;
        }
        
        .feature-icon svg {
            width: 30px;
            height: 30px;
            fill: #637257;
        }
        
        /* أنماط آراء العملاء */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .review-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eee;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .reviewer-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-left: 15px;
        }
        
        .reviewer-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .review-date {
            color: #777;
            font-size: 14px;
        }
        
        .rating {
            color: #ffc107;
            font-size: 18px;
            margin: 5px 0;
        }
        
        /* أنماط إحصائيات الثقة */
        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #637257;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #666;
        }
        
        /* أنماط التكيف مع الأجهزة */
        @media (max-width: 768px) {
            .features-grid, .reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .trust-stats {
                gap: 20px;
            }
            
            .section-title {
                font-size: 24px;
            }
        }

