* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.scroll-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.scroll-section {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.content {
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: 800px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    overflow: scroll;
    white-space: pre-line;
}

@media (max-width: 800px) {
    .content {
        max-height: 500px;
        align-items: flex-start;
    }
}

.section-description {
    position: absolute;
    top: 10px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4%;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    white-space: nowrap;
}

@media (max-width: 800px) {
    .section-description {
        position: absolute;
        right: 5px;
        top: 2px;
        font-size: 1.2rem;
    }
}

.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

@media (max-width: 800px) {
    .nav-dots {
        position: fixed;
        right: 3px;
    }
}

.dot {
    display: block;
    width: 12px;
    height: 12px;
    margin: 10px 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.3);
}