/* Team Section */
.team-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.team-section .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--color-a);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background: var(--color-a);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--color-b);
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 1.5rem;
    color: var(--color-c);
    margin-bottom: 0.5rem;
}

.team-member-title {
    font-size: 1rem;
    color: var(--color-b);
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member-bio {
    font-size: 0.95rem;
    color: var(--color-c);
    line-height: 1.6;
}
