/* إعدادات عامة */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    direction: rtl;
}

/* التنسيق للرأس */
header {
    background-color: #343a40;
    color: white;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 2px -2px gray;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

/* التنسيق للقسم الرئيسي */
.hero {
    background-color: #007bff;
    color: white;
    padding: 50px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
}

.hero .cta-btn {
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.cta-btn:hover {
    background-color: #218838;
}

/* تنسيق للأقسام */
section {
    margin: 30px auto;
    width: 80%;
}

.features .feature-list {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.features .feature {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
}

/* تنسيق قسم الأسعار */
.pricing-plans {
    display: flex;
    justify-content: space-between;
}

.plan {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 45%;
    text-align: center;
}

.plan h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.plan .cta-btn {
    background-color: #28a745;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 18px;
}

/* نموذج الاتصال */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
    margin: 0 auto;
}

.contact form input, .contact form textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.contact form button {
    padding: 15px;
    font-size: 18px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
}

/* تحسينات للجهاز المحمول */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
    }
    
    .features .feature-list {
        flex-direction: column;
    }
    
    .pricing-plans {
        flex-direction: column;
    }

    .contact form {
        width: 80%;
    }
}
/* التنسيق للصور */
.hero-image, .intro-image, .feature-image, .plan-image, .contact-image {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 8px;
    display: block;
}

/* تنسيق الصور داخل المميزات */
.feature {
    text-align: center;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* تنسيق الصور في خطط الأسعار */
.plan-image {
    width: 80%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* صورة للتواصل */
.contact-image {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

