/* ============================
   تنسيقات صفحة About Us
   ============================ */

/* إعدادات عامة */
body {
    background-color: #12161C;
    color: #EAECEF;
    font-family: 'Roboto', sans-serif;
}

/* الحاوية الرئيسية */
.container {
    margin-top: 40px;
    max-width: 1000px;
}

/* عناوين الأقسام */
h2.header-title {
    color: #F3BA2F;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 2.5rem;
}

p.lead-text {
    color: #EAECEF;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
}

/* كروت الأقسام */
.about-card {
    background-color: #181A20;
    border: 2px solid #F3BA2F;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card h3 {
    color: #F3BA2F;
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.about-card p {
    font-size: 16px;
    color: #EAECEF;
    line-height: 1.8;
    text-align: justify;
}

/* قسم الفريق */
.team-section h3 {
    color: #F3BA2F;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.team-member {
    background-color: #181A20;
    border: 2px solid #F3BA2F;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.team-member h4 {
    color: #F3BA2F;
    font-size: 20px;
    margin-bottom: 10px;
}

.team-member p {
    color: #EAECEF;
    font-size: 14px;
}

/* قسم الرؤية المستقبلية والقيم */
.team-section .about-card {
    padding: 20px;
}

/* قسم Call-to-Action */
.call-to-action {
    text-align: center;
    margin-top: 40px;
}

.btn-action {
    background-color: #F3BA2F;
    color: #12161C;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-action:hover {
    background-color: #E5A500;
}

/* تحسين التوافق مع جميع المقاسات */
@media (max-width: 768px) {
    .container {
        margin-top: 20px;
    }

    .team-member img {
        width: 90px;
        height: 90px;
    }

    .about-card {
        padding: 15px;
    }

    .about-card p {
        font-size: 15px;
    }

    .header-title {
        font-size: 2rem;
    }

    p.lead-text {
        font-size: 1rem;
    }

    .btn-action {
        padding: 8px 20px;
        font-size: 14px;
    }
}
