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

    body {
        font-family: 'Arial', sans-serif;
        background-color: #f0f2f5;
        color: #222;
        overflow-x: hidden;
    }

    .scroll-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        height: 100vh;
    }

    .section {
        flex: 0 0 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        scroll-snap-align: start;
        transition: transform 0.3s;
    }

    .section:nth-child(odd) {
        background: #ff3366;
        color: #fff;
    }

    .section:nth-child(even) {
        background: #222;
        color: #fff;
    }

    .section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .section p {
        font-size: 1.2rem;
        max-width: 600px;
        text-align: center;
        line-height: 1.6;
    }

    .section a {
        margin-top: 20px;
        padding: 12px 25px;
        background: #fff;
        color: inherit;
        text-decoration: none;
        font-weight: bold;
        border-radius: 12px;
        transition: transform 0.3s, background 0.3s;
    }

    .section a:hover {
        background: #ddd;
        transform: scale(1.05);
    }

    /* Scroll snapping for modern browsers */
    html {
        scroll-snap-type: x mandatory;
        overflow-x: auto;
    }

    /* Hide scrollbar */
    .scroll-container::-webkit-scrollbar {
        display: none;
    }

    @media (max-width: 768px) {
        .section h2 {
            font-size: 2rem;
        }
        .section p {
            font-size: 1rem;
        }
    }


        / Global Styles /
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }

        .container {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        h1, h2, h3 {
            color: #333;
            margin-bottom: 0.5em;
            font-weight: bold;
        }

        / Header Styles /
        header {
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd;
            margin-bottom: 20px;
        }

        header h1 {
            font-size: 2.5em;
        }

        / Content Styles /
        p {
            margin-bottom: 1em;
        }

        ul, ol {
            margin-bottom: 1em;
            padding-left: 20px;
        }

        li {
            margin-bottom: 0.5em;
        }

        a {
            color: #007bff;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        / Table of Contents Styles /
        .toc {
            margin-bottom: 20px;
            border: 1px solid #ddd;
            padding: 10px;
            border-radius: 4px;
            background-color: #f9f9f9;
        }

        .toc h3 {
            margin-top: 0;
            font-size: 1.2em;
        }

        .toc ul {
            list-style: none;
            padding-left: 0;
        }

        .toc a {
            display: block;
            padding: 5px 0;
            border-bottom: 1px solid #eee;
        }

        .toc a:last-child {
            border-bottom: none;
        }


        / FAQ Styles /
        .faq {
            margin-top: 30px;
            border-top: 1px solid #ddd;
            padding-top: 20px;
        }

        .faq h3 {
            font-size: 1.3em;
            margin-bottom: 10px;
        }

        .faq p {
            margin-bottom: 15px;
        }

        / Footer Styles /
        footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
            font-size: 0.9em;
            color: #777;
        }

        / Responsive Design /
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            h1 {
                font-size: 2em;
            }
        }
    