        @import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600&display=swap');

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .modern-header {
            width: 100%;
            background: linear-gradient(90deg, #6dd5ed 0%, #0078d7 100%);
            color: #fff;
            text-align: center;
            padding: 14px 0 14px 0;
            font-size: 2.4rem;
            font-family: 'Baloo 2', Arial, sans-serif;
            font-weight: 600;
            position: fixed;
            top: 0;
            border-radius: 0 0 32px 32px;
            z-index: 1003;
            box-shadow: 0 4px 24px rgba(33, 147, 176, 0.18);
            letter-spacing: 2px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        @keyframes playfulBounce {
            0% {
                transform: translateX(-50%) scale(0.9);
            }

            60% {
                transform: translateX(-50%) scale(1.05);
            }

            100% {
                transform: translateX(-50%) scale(1);
            }
        }

        .parallax-container {
            position: fixed;
            top: 117px;
            bottom: 54px;
            /* footer height */
            left: 0;
            right: 0;
            max-width: 75vw;
            margin: 0 auto;
            left: 0;
            right: 0;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            z-index: 1001;
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE 10+ */
        }

        .parallax-container::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari, Opera */
        }

        .parallax-container .section {
            height: 100%;
            min-height: unset;
        }

        .section-selector {
            position: fixed;
            top: 50%;
            right: 32px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 18px;
            z-index: 2001;
        }

        .selector-btn {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #fff;
            /* border: 2px solid #0078d7; */
            border: 2px solid #0078d7;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
            outline: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .selector-btn.active {
            background: linear-gradient(90deg, #0078d7 0%, #6dd5ed 100%);
            border-color: #005fa3;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, sans-serif;
            overflow: hidden;
        }

        p {
            text-align: justify;
        }

        .section {
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 1.5rem;
            text-align: center;
            background: none;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.5);
            padding: 10px 20px;
            z-index: 1000;
        }

        .navbar a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 1rem;
        }

        .navbar a:hover {
            text-decoration: underline;
        }

        .content-container {
            display: flex;
            height: 70vh;
            border-radius: 18px;
            overflow: hidden;
        }

        .content-container-text-item {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 32px;
            color: #000;
            font-size: 1.6rem;
            text-align: left;
        }




        .modern-list {
            counter-reset: item;
            list-style: none;
            padding-left: 0;
            margin: 18px 0 0 0;
        }

        .modern-list li {
            position: relative;
            background: #f5f7fa;
            color: #222;
            margin-bottom: 14px;
            padding: 16px 24px 16px 56px;
            border-radius: 16px;
            font-size: 1.15rem;
            font-family: 'Baloo 2', Arial, sans-serif;
            box-shadow: 0 2px 12px rgba(33, 147, 176, 0.08);
            transition: background 0.2s;
        }

        .modern-list li:hover {
            background: #e0e7ff;
        }

        .modern-list li:before {
            counter-increment: item;
            content: counter(item);
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #6dd5ed 0%, #0078d7 100%);
            color: #fff;
            font-size: 1.1rem;
            font-weight: bold;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(33, 147, 176, 0.12);
        }

        .modern-section-title {
            margin-bottom: 18px;
            font-size: 2.4rem;
            text-align: center;
            font-family: 'Baloo 2', Arial, sans-serif;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: #222;
            text-shadow: 0 2px 12px rgba(33, 147, 176, 0.10);
        }

        .gradient-text {
            background: linear-gradient(90deg, #6dd5ed 0%, #0078d7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            font-size: 2.6rem;
            letter-spacing: 2px;
            filter: drop-shadow(0 2px 8px rgba(33, 147, 176, 0.12));
        }

        .gradient-text-reverse {
            background: linear-gradient(90deg, #0078d7 0%, #6dd5ed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            font-size: 2.6rem;
            letter-spacing: 2px;
            filter: drop-shadow(0 2px 8px rgba(33, 147, 176, 0.12));
        }

        .modern-footer {
            background: linear-gradient(90deg, #0078d7 0%, #6dd5ed 100%);
            border-radius: 32px 32px 0 0;
            color: #fff;
            text-align: center;
            padding: 18px 0;
            font-size: 1rem;
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            z-index: 1002;
        }

        .form-container {
            max-width: 480px;
            margin: 0 auto;
            background: #f5f7fa;
            border-radius: 18px;
            box-shadow: 0 2px 12px rgba(33, 147, 176, 0.10);
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-height: 60vh;
            overflow-y: auto;
        }

        .modern-input {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 1rem;
            margin-bottom: 4px;
            font-family: 'Baloo 2', Arial, sans-serif;
        }

        .modern-btn {
            padding: 10px 24px;
            background: linear-gradient(90deg, #6dd5ed 0%, #0078d7 100%);
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-family: 'Baloo 2', Arial, sans-serif;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(33, 147, 176, 0.10);
            transition: background 0.2s;
        }

        .modern-btn:hover {
            background: linear-gradient(90deg, #6dd5ed 0%, #0078d7 100%);
        }

        label {
            color: #000;
            font-family: 'Baloo 2', Arial, sans-serif;
            font-weight: 600;
        }

        .side-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 0;
        }

        .form-item {
            margin-bottom: 16px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
        }

        .form-checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-checkbox-label {
            margin: 0;
            text-align: left;
        }


        @media (max-width: 600px) {
            .section-selector {
                display: none;
            }

            .content-container {
                flex-direction: column;
                height: unset;
                padding-bottom: 50px;
            }

            .content-container-text-item {
                padding: 0px;
            }

            .parallax-container {
                max-width: 90vw;
                top: 150px;
            }

            .parallax-container .section {
                height: unset;
            }

            .form-container {
                max-height: unset;
            }

            .mobile-reverse {
                flex-direction: column-reverse;
            }

            .mobile-logo-hidden {
                display: none;
            }

            .small-mobile-text {
                font-size: large;
            }
        }