/* About page styles */
.team {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: #fff;
}

.team p {
    color: #999;
    max-width: 700px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.member {
    background: #111;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.member p {
    color: #ff6b35;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.mission {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: #111;
    border-radius: 12px;
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #fff;
}

.mission p {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
}

@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
    }
}
