
        :root {
            --color-primary: #5a4fcf;
            --color-primary-dark: #4a3fb8;
            --gradient-main: linear-gradient(261.24deg, var(--color-primary) 17.02%, var(--color-primary-dark) 87.64%);
            --gradient-secondary: linear-gradient(212.12deg, var(--color-primary) 20.26%, var(--color-primary-dark) 76.13%);
            --gradient-button: linear-gradient(98.07deg, #f6c23e -16.15%, #ffd700 146.12%);
            --gradient-providers-block: #6c5ce7;
            --color-white: #fff;
            --color-gray: #e3e1e1;
            --color-body: #fff;
            --color-text-light: #fff;
            --color-text-dark: #fff;
            --color-heading: #ffd700;
            --color-link: #fff;
            --color-link-hover: #ffd700;
            --color-anchor-menu-bg: #5a4fcf;
            --color-anchor-menu-primary: #6c5ce7;
            --color-anchor-menu-secondary: #ffd700;
            --color-module-text: #fff;
            --color-body-bg: #5a4fcf;
            --color-faq-bg: #6c5ce7;
            --color-cons-bg: #6c5ce7;
            --color-cons-text: #fff;
            --color-cons-title: #fff;
            --color-table-bg: #5a4fcf;
            --color-table-text: #fff;
            --color-table-sep: #6c5ce7;
            --color-upper-footer-bg: #6c5ce7;
            --color-lower-footer-bg: #6c5ce7;
            --color-footer-text: #fff;
            --font-primary: 'Montserrat', 'Arial', sans-serif;
            --text-xs: 1.2rem;
            --text-sm: 1.4rem;
            --text-base-size: 1.6rem;
            --text-md: 1.8rem;
            --text-lg: 2rem;
            --text-xl: 2.4rem;
            --text-xxl: 2.8rem;
            --container-width: 1110px;
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 3rem;
            --border-radius-sm: 36px;
            --border-radius: 36px;
            --header-height: 8rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 62.5%;
        }

        body {
            font-family: var(--font-primary);
            font-size: var(--text-base-size);
            background: var(--color-body-bg);
            color: var(--color-white);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            margin-inline: auto;
            max-width: var(--container-width);
            padding: 0 var(--space-md);
        }

        /* Header */
        .header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 20;
            background: #5a4fcf;
        }

        .header__wrap {
            padding-inline: var(--space-md);
        }

        .header__main {
            margin-inline: auto;
            max-width: var(--container-width);
            min-height: var(--header-height);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header__logo img {
            width: 170px;
            height: 50px;
        }

        .header__nav ul {
            display: none;
            list-style: none;
        }

        @media (min-width: 1024px) {
            .header__nav ul {
                display: flex;
                gap: 1.6rem;
            }

            .header__nav ul a {
                color: var(--color-white);
                font-size: 1.3rem;
                line-height: 2.4rem;
                text-decoration: none;
                text-transform: uppercase;
                font-weight: 500;
            }

            .header__nav ul a:hover {
                color: var(--color-heading);
            }
        }

        .header__extra {
            display: none;
        }

        @media (min-width: 1024px) {
            .header__extra {
                display: flex;
                align-items: center;
                gap: 1.5rem;
            }
        }

        .button {
            background: #ffd700;
            color: #5a4fcf;
            text-transform: none;
            border-radius: var(--border-radius);
            padding: 1.3rem 2.4rem;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.4rem;
            line-height: 2rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .button:hover {
            background: #ffed4a;
            color: #5a4fcf;
        }

        .button.second-button {
            background: inherit;
            color: #fff;
            border: 1px solid #fff;
        }

        .button.second-button:hover {
            box-shadow: 0 3px 10px #fff;
        }

        /* Mobile Menu */
        .hamburger-btn {
            width: 30px;
            height: 30px;
            position: relative;
            cursor: pointer;
            outline: none;
            appearance: none;
            background-color: transparent;
            border: none;
            transition: 0.5s ease-in-out;
        }

        @media (min-width: 1024px) {
            .hamburger-btn {
                display: none;
            }
        }

        .hamburger-btn span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: var(--color-white);
            border-radius: var(--border-radius);
            opacity: 1;
            left: 0;
            transition: 0.1s ease-in-out;
        }

        .hamburger-btn span:nth-child(1) {
            top: 0.5rem;
        }

        .hamburger-btn span:nth-child(2) {
            top: 1.5rem;
        }

        .hamburger-btn span:nth-child(3) {
            top: 2.5rem;
        }

        .header__mob-menu {
            display: none;
            position: absolute;
            top: 0;
            height: 100vh;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .header__mob-menu.open {
            display: block;
        }

        .header__mob-menu-main {
            position: relative;
            padding: var(--space-lg);
            padding-top: 1.9rem;
            max-width: 27rem;
            width: 100%;
            height: 100%;
            margin-left: auto;
            background: var(--gradient-secondary);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .header__mob-menu-main .button{
            margin: 15px auto;
        }

        .header__mob-menu-close {
            position: absolute;
            top: 1rem;
            right: 28rem;
            width: 3rem;
            height: 3rem;
            background: var(--color-white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #111;
            font-weight: 700;
            font-size: var(--text-sm);
            cursor: pointer;
        }

        .header__mob-menu nav ul {
            margin-top: 3.2rem;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            list-style: none;
        }

        .header__mob-menu nav a {
            color: var(--color-white);
            font-size: var(--text-lg);
            text-decoration: none;
        }

        /* Hero Section */
        .hero.frontpage {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffd700" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffd700" stop-opacity="0"/></radialGradient></defs><rect width="100" height="100" fill="url(%23a)"/></svg>'), linear-gradient(45deg, #5a4fcf, #6c5ce7);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding-top: calc(var(--header-height) + 1rem);
            padding-bottom: 2rem;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        @media (min-width: 900px) {
            .hero.frontpage {
                padding-top: calc(var(--header-height) + 2rem);
                padding-bottom: 2rem;
                min-height: 85vh;
            }
        }

        .hero__wrap {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--space-md);
            color: var(--color-white);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-md);
        }

        @media (min-width: 900px) {
            .hero__wrap {
                flex-direction: row;
                align-items: flex-start;
            }
        }

        .hero__content {
            width: 100%;
        }

        @media (min-width: 900px) {
            .hero__content {
                width: 55%;
            }
        }

        .hero__image {
            flex: 1;
            text-align: center;
        }

        .hero__image img {
            width: 100%;
            height: auto;
            max-width: 500px;
        }

        .hero__title h1 {
            font-weight: 800;
            font-size: 2.6rem;
            line-height: 3.9rem;
            text-align: center;
            color: var(--color-white);
            margin-bottom: 1rem;
        }

        @media (min-width: 900px) {
            .hero__title h1 {
                text-align: left;
                font-size: 4rem;
                line-height: 6rem;
            }
        }

        .hero__text {
            font-weight: 500;
            font-size: var(--text-sm);
            line-height: 2.9rem;
            text-align: center;
            color: #fff;
            margin-bottom: 2rem;
        }

        @media (min-width: 900px) {
            .hero__text {
                font-size: var(--text-base-size);
                text-align: left;
            }
        }

        .bonus-title {
            color: var(--color-heading);
            margin-top: var(--space-sm);
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-shortcode {
            margin-top: 3rem;
            display: flex;
            justify-content: flex-start;
            gap: 1rem;
        }

        @media (min-width: 900px) {
            .cta-shortcode {
                justify-content: center;
            }
        }

        @media (max-width: 1000px) {
            .cta-shortcode {
                flex-direction: column;
                justify-content: flex-start;
            }
        }

        .cta-shortcode .btn {
            width: 49%;
            padding: 1.9rem;
            text-decoration: none;
            text-align: center;
        }

        @media (max-width: 1000px) {
            .cta-shortcode .btn {
                width: 100%;
            }
        }

        .btn--primary {
            background: #ffd700;
            color: #5a4fcf;
            border-radius: var(--border-radius);
            font-weight: 700;
            transition: all 0.3s;
        }

        .btn--primary:hover {
            background: #ffed4a;
        }

        .btn--primary.second-button {
            background: inherit;
            color: #fff;
            border: 1px solid #fff;
        }

        .btn--primary.second-button:hover {
            box-shadow: 0 3px 10px #fff;
        }

        /* Anchor Menu */
        .anchorMenu {
            padding: 0;
            height: 8.7rem;
        }

        .anchorMenu .inner {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            background: var(--color-anchor-menu-bg);
            padding: 1.5rem;
        }

        .anchorMenu .inner.js-fixed {
            position: fixed;
            top: 0;
            z-index: 10;
            width: 100%;
        }

        .anchorMenu .inner__menu {
            width: 100%;
            overflow-x: scroll;
            overflow-y: hidden;
            height: 5rem;
            padding: 0;
            max-width: var(--container-width);
            margin-inline: auto;
            scrollbar-width: none;
        }

        .anchorMenu .inner__menu::-webkit-scrollbar {
            display: none;
        }

        .anchorMenu .inner__menu ul {
            position: relative;
            background: var(--color-anchor-menu-bg);
            display: flex;
            flex-wrap: nowrap;
            justify-content: flex-start;
            list-style: none;
        }

        .anchorMenu .inner__menu ul li:not(:last-child) {
            margin-right: 0.8rem;
        }

        .anchorMenu .inner__menu ul li a {
            background: var(--color-anchor-menu-primary);
            border-radius: var(--border-radius-sm);
            color: var(--color-text-dark);
            font-size: var(--text-sm);
            line-height: 2.1rem;
            white-space: nowrap;
            padding: 1rem 2rem;
            display: block;
            text-decoration: none;
            font-weight: 400;
        }

        .anchorMenu .inner__menu ul li a.active {
            color: var(--color-anchor-menu-secondary);
            font-weight: 600;
        }

        .anchorMenu .inner .js-progressbar {
            display: block;
            width: 100%;
            background: var(--color-anchor-menu-primary);
            border-radius: 0.8rem;
            max-width: var(--container-width);
            margin-inline: auto;
        }

        .anchorMenu .inner .js-progressbar div {
            height: 0.7rem;
            border-radius: 0.8rem;
            background: var(--color-anchor-menu-secondary);
            max-width: 100%;
        }

        /* Main Content */
        .module {
            padding-block: 2.7rem;
            padding-inline: var(--space-md);
        }

        @media (min-width: 900px) {
            .module {
                padding-inline: 0;
            }
        }

        .module-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 3.6rem;
            color: var(--color-heading);
            margin-bottom: 2rem;
        }

        .content-module__wrapper {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }

        @media (min-width: 900px) {
            .content-module__wrapper {
                flex-direction: row;
            }

            .content-module__wrapper.right {
                flex-direction: row-reverse;
            }
        }

        .content-module__content {
            width: 100%;
        }

        @media (min-width: 900px) {
            .content-module__content {
                flex: 50%;
            }
        }

        .content-module__image {
            flex-basis: 50%;
        }

        .content-module__image.full {
            display: block;
        }

        .content-module__image img {
            width: 100%;
            border-radius: 8px;
        }

        .content-module__card.default {
            font-size: var(--text-base-size);
            color: var(--color-module-text);
        }

        .content-module__card p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .content-module__card h3, .content-module__card h4 {
            color: var(--color-heading);
            margin: 2rem 0 1rem 0;
        }

        .content-module__card ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .content-module__card li {
            list-style-type: disc;
            margin-bottom: 0.5rem;
        }

        /* CTA Box */
        .ctaBox {
            background: #6c5ce7;
            border-radius: var(--border-radius);
            padding: 6rem var(--space-md);
            display: flex;
            flex-direction: column;
            gap: 2.4rem;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            color: #fff;
            text-align: center;
            position: relative;
        }

        .ctaBox-text {
            max-width: 80%;
            margin: 0 auto;
            font-size: 14px;
            font-weight: 400;
        }

        .ctaBox-main-text {
            display: flex;
            font-size: 28px;
            line-height: 32px;
            font-weight: bold;
            flex-direction: column;
            gap: var(--space-sm);
            max-width: 80%;
            margin: 0 auto;
        }

        .ctaBox .button {
            background-color: #ffd700;
            color: #5a4fcf;
            min-width: 70%;
        }

        .ctaBox .button:hover {
            background-color: #ffed4a;
            color: #5a4fcf;
        }

        /* Tables */
        .overflow-table {
            overflow-x: auto;
            box-shadow: 10px 10px 50px 0px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .overflow-table table {
            min-width: 100%;
            border-collapse: separate;
            background-color: var(--color-table-bg);
            font-size: var(--text-base-size);
        }

        .overflow-table table thead th {
            text-align: left;
            font-weight: bold;
            background: #6c5ce7;
            color: #ffd700;
            padding: 1rem;
        }

        .overflow-table table td {
            color: var(--color-table-text);
            padding: 1.3rem 1rem;
        }

        .overflow-table table td:first-child {
            font-weight: 600;
            color: var(--color-heading);
        }

        .overflow-table table tr:not(:last-of-type) td {
            border-bottom: 1px solid var(--color-table-sep);
        }

        .btn-wrap {
            margin: 20px 0;
            text-align: center;
        }

        .btn-wrap .button.content-btn {
            background: #ffd700;
            color: #5a4fcf;
            width: 60%;
        }

        @media (max-width: 800px) {
            .btn-wrap .button.content-btn {
                width: 100%;
            }
        }

        /* Images */
        .img-wrp {
            margin: 20px auto;
            text-align: center;
        }

        .img-wrp img {
            width: 100%;
            height: auto;
            max-width: 420px;
        }

        /* Footer */
        .footer {
            padding-top: 8rem;
            overflow-x: hidden; /* Fix horizontal scroll */
        }

        .footer__top {
            padding-block: 5rem 5.3rem;
            background: var(--color-upper-footer-bg);
            color: var(--color-text-light);
            font-size: var(--text-sm);
            font-weight: 500;
            line-height: 2.1rem;
            text-align: center;
            overflow-x: hidden; /* Fix horizontal scroll */
        }

        @media (min-width: 900px) {
            .footer__top .container {
                display: flex;
                justify-content: space-between;
                gap: var(--space-sm);
                text-align: left;
            }
        }

        .footer__top .container > div {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            width: 100%;
        }

        @media (min-width: 900px) {
            .footer__top .container > div {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer__description {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 0 0 40%;
        }

        .footer__top-menu {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            flex: 1;
            min-width: 0; /* Prevent overflow */
        }

        @media (min-width: 900px) {
            .footer__top-menu {
                flex-direction: row;
                justify-content: space-between;
                gap: 2rem;
            }
        }

        .footer-menu {
            flex: 1;
            min-width: 160px;
            max-width: 200px; /* Prevent overflow */
        }

        .footer__description img {
            width: 170px;
            height: auto;
            margin-bottom: 1.6rem;
        }

        .footer-menu__title {
            font-size: var(--text-md);
            font-weight: 600;
            line-height: 2.4rem;
            margin-bottom: var(--space-md);
        }

        .footer-menu ul {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            list-style: none;
        }

        .footer-menu a {
            text-decoration: none;
            color: var(--color-white);
        }

        .footer-menu a:hover {
            color: var(--color-heading);
        }

        .footer__bottom {
            background-color: var(--color-lower-footer-bg);
            min-height: 7rem;
            overflow-x: hidden; /* Fix horizontal scroll */
        }

        @media (min-width: 900px) {
            .footer__bottom .container {
                display: flex;
                flex-direction: row-reverse;
                justify-content: space-between;
                align-items: center;
                padding-block: 2.3rem;
            }
        }

        .footer__bottom-images {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.7rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            overflow-x: hidden; /* Fix horizontal scroll */
        }

        @media (min-width: 900px) {
            .footer__bottom-images {
                gap: 2.5rem;
                margin-bottom: 0;
            }
        }

        .footer__bottom-images img {
            max-width: 180px;
            max-height: 80px;
            width: auto;
            height: auto;
        }
		
		@media (min-width: 900px) {
    .footer__bottom-images img {
        width: 220px;
        height: auto;
        max-height: 100px;
    }
}

        .footer__bottom-copyright {
            font-size: 1.3rem;
            line-height: 2.4rem;
            text-align: center;
            color: var(--color-footer-text);
        }

        /* Sticky CTA */
        .sticky-cta {
            position: sticky;
            bottom: 0;
            background: var(--gradient-providers-block);
            width: 100%;
            transition: all 0.3s ease-in-out;
            z-index: 10;
            height: 8rem;
            max-height: 8rem;
            overflow: hidden;
        }

        .sticky-cta.hide {
            position: fixed;
            bottom: -180px;
        }

        .sticky-cta .container {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-sm);
            padding: 1.5rem;
        }

        @media (min-width: 640px) {
            .sticky-cta__logo {
                display: block;
            }
        }

        .sticky-cta__logo {
            display: none;
        }

        .sticky-cta__logo img {
            width: 170px;
            height: auto;
        }

        .sticky-cta__oneliner {
            color: #fff;
            font-weight: 800;
            font-size: var(--text-sm);
            line-height: 2.1rem;
            display: flex;
            flex-direction: column;
            text-transform: uppercase;
            max-width: 50%;
        }

        @media (min-width: 900px) {
            .sticky-cta__oneliner {
                flex-direction: row;
                gap: 5px;
                font-size: var(--text-md);
                line-height: 2.7rem;
                max-width: initial;
            }
        }

        .sticky-cta .cta {
            font-weight: 700;
            font-size: var(--text-xs);
            line-height: 1.8rem;
            padding: 1.1rem var(--space-md);
            background: #ffd700;
            color: #5a4fcf;
            text-decoration: none;
            border-radius: var(--border-radius);
        }

        .sticky-cta .cta:hover {
            background: #ffed4a;
        }

        @media (min-width: 900px) {
            .sticky-cta .cta {
                font-size: var(--text-sm);
                line-height: 2.1rem;
            }
        }

        .sticky-cta__close {
            position: absolute;
            right: 0.2rem;
            top: 0.2rem;
            color: #fff;
            width: 2.4rem;
            height: 2.4rem;
            cursor: pointer;
        }

        /* Cookie Notification */
        .cookie-notification {
            display: none;
            position: fixed;
            bottom: 0;
            right: 0;
            width: 100%;
            padding: 20px;
            z-index: 65;
            background: #ffffff;
            color: #333;
        }

        .cookie-notification.open {
            display: block;
        }

        .cookie-notification .c_container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        @media (max-width: 800px) {
            .cookie-notification .c_container {
                flex-direction: column;
            }
        }

        .cookie-notification-text {
            width: 70%;
            padding: 0 5px;
            font-size: 1.4rem;
        }

        @media (max-width: 800px) {
            .cookie-notification-text {
                width: 100%;
            }
        }

        .cookie-notification-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .cookie-notification-close {
            display: block;
            width: 30%;
            color: #FFFFFF;
            border: 1px solid #333;
            background-color: #333;
            height: 50px;
            border-radius: 36px;
            text-align: center;
            line-height: 50px;
            margin: 10px;
            font-size: 16px;
            cursor: pointer;
        }

        @media (max-width: 800px) {
            .cookie-notification-close {
                width: 100%;
            }
        }

        /* Registration Steps Styling */
        .registration-steps {
            margin: 3rem 0;
        }

        .step-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(108, 92, 231, 0.5);
            border-radius: 15px;
            border-left: 4px solid var(--color-heading);
            transition: all 0.3s ease;
        }

        .step-item:hover {
            background: rgba(108, 92, 231, 0.8);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .step-number {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--color-heading), #ffd700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: #5a4fcf;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .step-content {
            flex: 1;
        }

        .step-content h4 {
            color: var(--color-heading);
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .step-content p {
            color: #ccc;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .registration-benefits {
            margin-top: 4rem;
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
            border-radius: 15px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .registration-benefits h4 {
            color: var(--color-heading);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .benefits-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .benefits-list li {
            padding: 0.8rem 0;
            font-size: 1.6rem;
            color: var(--color-white);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            transition: all 0.3s ease;
			list-style: none;
        }

        .benefits-list li:last-child {
            border-bottom: none;
        }

        .benefits-list li:hover {
            color: var(--color-heading);
            padding-left: 1rem;
        }

        /* Slots Gallery */
        .slots-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .slot-item {
            background: rgba(108, 92, 231, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .slot-item:hover {
            background: rgba(108, 92, 231, 0.6);
            border-color: var(--color-heading);
            transform: translateY(-5px);
        }

        .slot-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .slot-item h4 {
            color: var(--color-heading);
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }

        .slot-item p {
            color: #ccc;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .slot-item .button {
            width: 100%;
            font-size: 1.2rem;
            padding: 0.8rem;
        }

        .up_button {
            bottom: 100px;
            cursor: pointer;
            height: 55px;
            opacity: 0;
            position: fixed;
            right: 20px;
            text-align: center;
            transition: opacity 0.5s ease-in-out;
            width: 55px;
            z-index: 1000;
            background: var(--gradient-button);
            border-radius: 50%;
            border: none;
            color: white;
            font-size: 24px;
        }

        .up_button:hover {
            opacity: 1 !important;
        }

        .w-100 {
            width: 100%;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .up_button {
                bottom: 100px;
                right: 20px;
            }

            .hero__title h1 {
                font-size: 2.2rem;
            }

            .ctaBox {
                padding: 3rem 1rem;
            }

            .ctaBox-main-text {
                font-size: 20px;
                line-height: 24px;
            }

            .step-item {
                flex-direction: column;
                gap: 1rem;
                padding: 1.5rem;
            }

            .step-number {
                align-self: flex-start;
                width: 40px;
                height: 40px;
                font-size: 1.6rem;
            }

            .step-content h4 {
                font-size: 1.6rem;
            }

            .registration-benefits {
                padding: 2rem 1.5rem;
            }

            .benefits-list li {
                font-size: 1.4rem;
            }

            .slots-gallery {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .module-title h2 {
                font-size: 2.2rem;
            }
        }
