body {
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

h1 {
    font-size: 2rem;
}

.team-section {
    width: 100%;
    max-width: 1000px;
    padding: 0 1rem;
}

.team-group {
    margin-bottom: 3rem;
}

.team-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ccc;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.username {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.goal-section {
    max-width: 600px;
    margin-top: 3rem;
    padding: 0 1rem;
    font-size: 1.1rem;
    margin-top: -20vh;
    margin-bottom: 8rem;
}

.header-section,
.section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-section {
    min-height: 50vh;
}

.position {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.2rem;
}