* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.team-section {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.section-subtitle {
    color: #5b8def;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    color: #1a1a1a;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: 25px 20px;
    background: white;
}

.member-name {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.member-position {
    color: #6c757d;
    font-size: 15px;
    font-weight: 400;
}