.team-section {
    max-width: 1200px;
    margin: auto;


}

.team-title-container {

    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.team-tag {
    background-color: #e8f4e8;
    color: #2c9f2c;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 15px;
    font-size: 14px;
}

.team-title {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-member {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member-image {
    background-color: #e8f4e8;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

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

.team-member-info {
    padding: 15px;
    text-align: center;
}

.team-member-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.team-member-position {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}