body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    minheight: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%; /* Full width of viewport */
    max-width: 90%; /* Ensure no horizontal overflow */
    padding: 40px;
    text-align: center;
    scroll-snap-align: start;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 10px 0; /* Add vertical spacing */
}

.number {
    font-size: 8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff6347;
}

.description p {
    font-size: 1.5rem;
    max-width: 800px;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .section {
        padding: 30px;
    }

    .number {
        font-size: 6rem;
    }

    .description p {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .number {
        font-size: 5rem;
    }

    .description p {
        font-size: 1rem;
    }
}
