/* About Page Specific Styles */
.aboutMv-img {
    width: 100%;
    height: calc(100vh - 80px);
}

.about-hero h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Team Section */
#team {
    padding: 60px 0;
    background-color: #fff;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
    width: 30%;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
}

/* Mission Section */
#mission {
    background-color: #f9f9f9;
    padding: 60px 0;
}

#mission h2 {
    text-align: center;
    margin-bottom: 30px;
}

#mission p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Section */
#contact {
    padding: 60px 0;
    background-color: #fff;
}

#contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-member {
        width: 100%;
    }

    .about-hero,
    #mission,
    #contact {
        padding: 40px 0;
    }

    .about-hero h2,
    #team h2,
    #mission h2,
    #contact h2 {
        font-size: 2em;
    }
}

/* General Section Styles */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 30px;
}