
.about-page {
    padding-top: 40px;
    font-family: 'Outfit', sans-serif;
    color: #4b5563;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1, .section-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #707070;
}

.about-header h1 span, .section-subtitle span {
    color: #333;
    font-weight: 600;
}

/* التنسيق الرئيسي للنصوص والصورة */
.about-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    display: block;
}

.about-text {
    flex: 1.5;
    line-height: 1.8;
    font-size: 15px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text h3 {
    color: #333;
    margin: 30px 0 10px 0;
}

/* قسم المميزات */
.why-choose-us {
    margin-bottom: 80px;
}

.section-subtitle {
    margin-bottom: 30px;
}

.features-grid {
    display: flex;
    border: 1px solid #e5e7eb;
}

.feature-card {
    padding: 40px;
    border-right: 1px solid #e5e7eb;
    flex: 1;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card h4 {
    color: #333;
    font-size: 14px;
    margin-bottom: 20px;
}

.feature-card p {
    font-size: 13px;
    line-height: 1.6;
}

/* قسم الاشتراك */
.newsletter-section {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;

}

.newsletter-section h2 {
    color: #333;
    font-size: 22px;
    margin-bottom: 10px;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.subscribe-form input {
    width: 400px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    outline: none;
}

.subscribe-form button {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 13px;
}

/* الرسبونسيف (تجاوب الشاشات) */
@media (max-width: 768px) {
    .about-intro {
        flex-direction: column;
    }
    .features-grid {
        flex-direction: column;
    }
    .feature-card {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    .subscribe-form input {
        width: 100%;
    }
}