.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1578496479914-7ef3b0193be3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    font-family: 'Ma Shan Zheng', cursive;
    letter-spacing: 10px;
}

.mission-vision {
    padding: 40px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-box {
    padding: 40px;
    background: white;
    border-top: 5px solid var(--primary-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.mission-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.section-header {
    padding: 60px 10% 20px;
}

.team-section {
    padding: 60px 10%;
    background: #fdfbf7;
}

.team-section .section-header {
    padding-top: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--primary-red);
    font-size: 0.9rem;
}
