/* Section Styling */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 20px 50px 20px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    scroll-snap-align: start;
}

/* Header Styling for Sections */
section h1 {
    margin: 0 0 20px 0;
    font-size: 2.5em;
}

/* Paragraph Styling */
section p {
    font-size: 1.6em;
    line-height: 1.2;
    width: 80%;
    align-self: center;
    margin: 0 0 15px 0;
}

/* Section Colors */
section:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.05); /* Light overlay for contrast */
}

section:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly darker overlay */
}
