/* Team Section Styles */
.team {
    background-color: #fff;
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-intro p {
    font-size: 1.2rem;
    color: #555;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--gold-color);
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 0;
}