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

        html {
            scroll-snap-type: y mandatory; /* Включаем прилипание по оси Y */
            scroll-behavior: smooth; /* Плавная прокрутка */
        }

        body {
            font-family: Arial, sans-serif;
            color: #fff;
            line-height: 1.6;
            cursor: url("/media/cur1.png"), auto;
        }

        .section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            scroll-snap-align: start; /* Каждая секция прилипает к началу вьюпорта */
        }

        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .section-1 {
            background-image: url("/media/backgr.png");
            width: 100%;
            height: 100vh;
        }
<!--
        .section-2 {
            background-color: #333;
        }

        .section-3 {
            background-image: url("/media/backgr.png");
        }

        .section-4 {
            background-color: #222;
        }
-->
        h1, h2 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

	a:hover {
		cursor: url("/media/cur2.png"), pointer;
	}

        p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 20px auto;
        }

        .button-container {
            margin-top: 20px;
        }

        .button {
            display: inline-block;
            padding: 10px 20px;
            margin: 10px;
            background-color: #FF260A; /*#007bff*/
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1rem;
            transition: background-color 0.3s;
        }

        .button:hover {
            background-color: #AA1706; /* #0056b3 */
            cursor: url("/media/cur2.png"), pointer;
        }

	.button2 {
	    display: block;
            padding: 10px 20px;
            margin: 10px;
            background-color: #FF260A; /*#007bff*/
            color: #fff;
            text-decoration: none;
            border-radius: 20px;
            font-size: 1rem;
            transition: background-color 0.3s;
	}

	.button2:hover {
            background-color: #AA1706; /* #0056b3 */
            cursor: url("/media/cur2.png"), pointer;
        }

        .content {
            background: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 25px;
        }

	    img {
	  	display: block;
	  	margin-left: auto;
	  	margin-right: auto;
	  	width: 40%;
	    }

        @media (max-width: 768px) {
            .section-1 {
                background: url("/media/backgr-mobile2.png") no-repeat center/cover;
                width: 100%;
                height: 100vh;
            }
            .parallax {
                background-attachment: scroll; /* Отключаем fixed на мобильных */ 

            }

            h1, h2 {
                font-size: 2rem;
            }

            p {
                font-size: 1rem;
            }

            html {
                scroll-snap-type: none; /* Отключаем прилипание на мобильных для плавности */
            }

            .button {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
	    
	    .button2 {
		padding: 8px 16px;
                font-size: 0.9rem;
            }

	    img {
	  	display: block;
	  	margin-left: auto;
	  	margin-right: auto;
	  	width: 40%;
	    }
        }
</style>
