.team-section {
    padding: 40px;
    background-color: #FFFFFF;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}

.team-section h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

/* Team Cards */
.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.team-card {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    max-width: 150px;
    margin-bottom: 15px;
}

.team-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-decoration: none;
    text-transform: none;
}

.team-card .title {
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 1rem;
    color: #333;
}