.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: 20px;
    gap: 20px;
}

.team-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    min-width: 400px;
    flex: 0 1 250px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 50%;
}

.team-name {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.team-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4em;
}

.job-title {
    color: #2980b9;
    font-size: 16px;
    font-weight: 750;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.glow {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.8), 0 0 40px rgba(0, 123, 255, 0.8), 0 0 60px rgba(0, 123, 255, 0.8) !important;
}

@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        min-width: 80%;
        margin-bottom: 20px;
    }
}
