/* <--- About Us Section Starting ---> */
.about-us-section {
    padding: 60px 20px;
    background-color: #f5f0e8; 
    color: #3e2723; 
    margin-top: 130px;
}

.about-us-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-us-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif; 
}

.about-us-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-us-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.about-us-text {
    max-width: 600px;
    text-align: left;
}

.about-us-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif; 
}

.about-us-text p {
    font-size: 18px;
    line-height: 1.6;
}

.about-us-image img {
    max-width: 100%; 
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.about-us-team {
    text-align: center;
    margin-bottom: 40px;
}

.about-us-team h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif; 
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.team-member {
    background-color: #fff;
    border: 3px solid #d4a373; 
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    max-width: 250px;
    text-align: center;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3e2723; 
}

.team-member p {
    font-size: 16px;
    color: #4e342e; 
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-us-content {
        flex-direction: column;
        text-align: center;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }
}
/* <--- About Us Section Ending ---> */
