.list-agent-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

.team-card {
    flex: 0 0 calc(25% - 1rem); /* 3 cards per row */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .team-card {
        flex: 0 0 100%; /* Full width on mobile */
    }
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid #ddd;
}

.team-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.team-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #db4a2b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.team-btn:hover {
    background-color: #e76f51;
}
