/* styles.css */



.team-section {
    text-align: center;
    padding: 30px 10px;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #444;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #f4f4f9;
}

.team-name {
    font-size: 1.2em;
    margin: 10px 0 5px;
    color: #222;
}

.team-role {
    font-size: 0.9em;
    color: #666;
}
