﻿/* تنسيق قسم الخلفية */
.background-section {
    width: 100%;
    height: 500px; /* ارتفاع ثابت ليصل إلى مستوى الصور */
    background-color: #E7F2F8;
    margin: 0;
    margin-top: 94px;
    display: block;
    position: relative;
    z-index: 0;
}

/* تأكد من أن محتوى الخدمات يظهر فوق الخلفية */
.services-section {
    position: relative;
    z-index: 1;
    margin-top: -40px;
}

/* تنسيق قسم البرامج والمبادرات */
.community-programs-section {
    margin-top: 40px;
    padding: 30px 0 20px;
    text-align: center;
    background-color: transparent;
    position: relative;
}

.community-programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #E5E5E5;
}

.community-programs-section h3 {
    margin: 0;
    text-align: center;
    color: #00827A;
    /* font-size: var(--font-2xl) !important; */
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .background-section {
        width: 95%;
        max-width: none;
        min-width: auto;
        height: auto;
        min-height: 350px;
        max-height: none;
    }
}

@media (max-width: 992px) {
    .background-section {
        width: 100%;
        margin-top: 60px;
        height: auto;
        min-height: 300px;
    }
    
    .services-section {
        margin-top: -20px;
    }
}

@media (max-width: 768px) {
    .background-section {
        margin-top: 40px;
        height: auto;
        min-height: 250px;
    }
} 
