body {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    background: #f4f6f9;
}

.team-section {
    padding: 50px 20px;
    text-align: center;
}

.team-section h1 {
    margin-bottom: 10px;
    color: #222;
}

.subtitle {
    color: #555;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.team-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.team-card h3 {
    margin: 10px 0 5px;
    color: #111;
}

.role {
    font-weight: 600;
    color: #0066cc;
    font-size: 14px;
}

.dept {
    font-size: 13px;
    color: #666;
}
