.scroll-container {
    height: 100vh;
    height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.scroll-container::-webkit-scrollbar { display: none; }

.snap-section {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.snap-section.section-overflow {
    overflow-y: auto;
}

.section-content {
    flex: 1;
    overflow-y: auto;
    padding: clamp(100px, 14vh, 130px) clamp(16px, 4vw, 40px) clamp(60px, 8vh, 90px);
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.section-content::-webkit-scrollbar { display: none; }
.section-content .team-container,
.section-content .welcome-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-content .welcome-header,
.section-content .team-header {
    margin-bottom: 40px;
}
