

.team-section {
    background-color: #fff;
    padding: 60px 0;
}

.section-title {
    color: var(--dark-brown);
    font-family: var(--head-font);
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: var(--yellow);
    transition: width 0.3s ease;
}

.team-section:hover .section-title::after {
    width: 70px;
}

.team-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    border-bottom: 3px solid var(--yellow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 4px solid var(--light-brown);
}

.team-name {
    color: var(--dark-brown);
    font-family: var(--head-font);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.team-desc {
    color: var(--brown);
    font-family: var(--body-font);
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-card img {
        width: 120px;
        height: 120px;
    }
    .team-name {
        font-size: 16px;
    }
    .team-desc {
        font-size: 12px;
    }
}
