.team-card {
    background-color: #111;
    color: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ffb106;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 177, 6, 0.5);
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ffb106;
}

.team-name {
    font-size: 1.3em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.team-position {
    font-size: 1em;
    color: #ffb106;
    margin-bottom: 10px;
}

.team-description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #ccc;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px){
    .team-card {
        width: 90%;
    }
}

@media (min-width: 769px){
    .team-card {
        width: 250px;
    }
}