/* تنسيقات قسم "عن المنصة" */
.about-us-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.about-us-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 15px;
}

.about-us-section .lead-paragraph {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* تنسيقات الأقسام الفرعية (الرؤية، المهمة، كيف نعمل، الفريق) */
.mission-vision,
.how-it-works,
.our-team {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    text-align: right;
}

.mission-vision h2,
.how-it-works h2,
.our-team h2 {
    font-size: 2rem;
    color: #007bff;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.mission-vision p,
.how-it-works p,
.our-team p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.mission-vision ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mission-vision li {
    background-color: #e9f5ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #343a40;
    position: relative;
    padding-right: 40px;
}

.mission-vision li::before {
    content: '\f00c'; /* أيقونة علامة صح */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
}

.final-call {
    font-size: 1.3rem;
    font-weight: 600;
    color: #343a40;
    margin-top: 50px;
    margin-bottom: 20px;
}