@import url(https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap);

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: "TikTok Sans", -apple-system, sans-serif;
    background-color: #19222d;
    color: #e0e0e0;
    font-size: 20px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

@media (max-width:768px) {
    body {
        font-size: 18px
    }
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease
}

ul,
ol {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

input,
textarea {
    font-family: inherit;
    font-size: inherit
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #19222d
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 60px
}

.header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    z-index: 101
}

.header__logo-img {
    width: 32px;
    height: 32px
}

.header__logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff
}

@media (max-width:768px) {
    .header__nav {
        display: none
    }
}

.header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px
}

.header__nav-link {
    font-size: 16px;
    color: #9a9da6;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    white-space: nowrap
}

.header__nav-link:hover,
.header__nav-link.active {
    color: #fff
}

.header__burger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    z-index: 101
}

@media (max-width:768px) {
    .header__burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.header__sub {
    background-color: #050E19;
    border-top: 1px solid #353a45;
    border-bottom: 1px solid #353a45;
    padding: 8px 0
}

@media (max-width:768px) {
    .header__sub {
        display: none
    }
}

.header__sub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.header__sub-text {
    font-size: 16px
}

.header__sub-badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase
}

.header__sub-badge-icon {
    width: 28px;
    height: 28px
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #19222d;
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible
}

.mobile-menu__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 0 20px
}

.mobile-menu__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 60px
}

.mobile-menu__close {
    color: #fff;
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.mobile-menu__nav {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.mobile-menu__list {
    text-align: center
}

.mobile-menu__link {
    display: block;
    padding: 20px 0;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease
}

.mobile-menu__link:hover {
    color: #ffa300
}

.mobile-menu__footer {
    padding: 20px 0 40px;
    text-align: center
}

.mobile-menu__footer .header__sub-badge {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 12px
}

.mobile-menu__footer-text {
    font-size: 16px;
    color: #9a9da6
}

.hero {
    padding: 60px 0 50px;
    background-image: url(../img/hero.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 700px;
    margin-right: auto
}

@media (max-width:480px) {
    .hero__title {
        font-size: 32px
    }
}

.hero__text {
    line-height: 1.7;
    max-width: 700px;
    margin-right: auto
}

.operators {
    padding: 50px 0
}

.operators__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.operators__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px
}

@media (max-width:768px) {
    .operators__title {
        font-size: 32px
    }
}

.operators__subtitle {
    color: #9a9da6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6
}

.operator-card {
    background-color: #232c39;
    border: 1px solid #353a45;
    border-radius: 12px;
    padding: 20px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media (max-width:768px) {
    .operator-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 10px
    }
}

.operator-card__left {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.operator-card__logo {
    width: auto;
    background: #fff;
    border-radius: 10px;
    padding: 4px;
}

.operator-card__center {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (min-width:768px) {
    .operator-card__center {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

.operator-card__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (min-width:768px) {
    .operator-card__rating {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }
}

.operator-card__score {
    font-size: 32px;
    font-weight: 700;
    color: #fff
}

.operator-card__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2px
}

.operator-card__stars .star {
    color: #f5a623;
    font-size: 18px
}

.operator-card__votes {
    font-size: 13px;
    color: #9a9da6
}

.operator-card__right {
    text-align: center;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

@media (max-width:768px) {
    .operator-card__right {
        width: 100%
    }
}

.operator-card__bonus {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    text-transform: uppercase
}

@media (max-width:768px) {
    .operator-card__bonus br {
        display: none
    }
}

.operator-card__btn {
    display: inline-block;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffa300), to(#fd6c0a));
    background: linear-gradient(180deg, #ffa300 0%, #fd6c0a 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.operator-card__btn:hover {
    opacity: .9
}

@media (max-width:768px) {
    .operator-card__btn {
        width: 100%;
        max-width: 100%
    }
}

.info {
    padding: 50px 0 60px
}

.info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.info__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .info__title {
        font-size: 32px
    }
}

.info__subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-top: 32px;
    margin-bottom: 12px
}

@media (max-width:768px) {
    .info__subtitle {
        font-size: 24px
    }
}

.info p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 12px
}

.info__highlight {
    font-weight: 600;
    color: #fff
}

.info__list {
    margin: 10px 0 16px 20px;
    list-style: disc
}

.info__list li {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 4px
}

.info__reminder {
    font-weight: 600;
    color: #ffa300;
    font-style: italic
}

.testimonials {
    padding: 60px 0
}

.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.testimonials__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px
}

@media (max-width:768px) {
    .testimonials__title {
        font-size: 32px
    }
}

.testimonials__subtitle {
    color: #9a9da6;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6
}

.testimonials__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

@media (max-width:1024px) {
    .testimonials__grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:480px) {
    .testimonials__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }
}

.testimonial-card {
    background-color: #232c39;
    border: 1px solid #353a45;
    border-radius: 12px;
    padding: 24px
}

.testimonial-card__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

.testimonial-card__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2px
}

.testimonial-card__stars .star {
    color: #f5a623;
    font-size: 16px
}

.testimonial-card__name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

@media (max-width:768px) {
    .testimonial-card__name {
        font-size: 20px
    }
}

.testimonial-card__text {
    color: #9a9da6
}

.contact-hero {
    padding: 60px 0 40px;
    text-align: center
}

.contact-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.contact-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

@media (max-width:480px) {
    .contact-hero__title {
        font-size: 32px
    }
}

.contact-hero__subtitle {
    font-size: 20px
}

.contact {
    padding: 0 0 50px
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.contact__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

@media (max-width:768px) {
    .contact__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }
}

.contact__info {
    background-color: #232c39;
    border: 1px solid #353a45;
    border-radius: 12px;
    padding: 32px
}

.contact__info-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px
}

@media (max-width:768px) {
    .contact__info-title {
        font-size: 24px
    }
}

.contact__info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    margin-bottom: 24px
}

.contact__info-item:last-child {
    margin-bottom: 0
}

.contact__info-item strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px
}

.contact__info-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #00ff6c
}

.contact__info-icon--email {
    background-color: rgb(0 255 108 / .15);
    color: #00ff6c
}

.contact__info-icon--clock {
    background-color: rgb(0 255 108 / .15);
    color: #00ff6c
}

.contact__info-icon--location {
    background-color: rgb(0 255 108 / .15);
    color: #00ff6c
}

.contact__info-link {
    color: #00ff6c;
    font-size: 14px
}

.contact__info-link:hover {
    text-decoration: underline
}

.contact__info-detail {
    color: #00ff6c;
    font-size: 14px;
    display: block
}

.contact__info-note {
    font-size: 13px;
    margin-top: 6px;
    line-height: 1.5
}

.contact__form-wrapper {
    background-color: #232c39;
    border: 1px solid #353a45;
    border-radius: 12px;
    padding: 32px
}

.contact__form-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px
}

@media (max-width:768px) {
    .contact__form-title {
        font-size: 24px
    }
}

.contact__form-group {
    margin-bottom: 16px
}

.contact__form-input {
    width: 100%;
    background-color: #2c313c;
    border: 1px solid #353a45;
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease
}

.contact__form-input::-webkit-input-placeholder {
    color: #9a9da6
}

.contact__form-input:-ms-input-placeholder {
    color: #9a9da6
}

.contact__form-input::-ms-input-placeholder {
    color: #9a9da6
}

.contact__form-input::placeholder {
    color: #9a9da6
}

.contact__form-input:focus {
    border-color: #ffa300
}

.contact__form-input.is-invalid {
    border-color: #e74c3c
}

.contact__form-textarea {
    resize: vertical;
    min-height: 120px
}

.contact__form-error {
    display: block;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 4px;
    min-height: 16px
}

.contact__form-btn {
    width: 100%;
    background-color: #ffa300;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease
}

.contact__form-btn:hover {
    background-color: #fd6c0a
}

.note {
    padding: 30px 0
}

.note__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.note__box {
    background-color: rgb(0 255 108 / .1);
    border: 2px solid #2ecc71;
    border-radius: 12px;
    padding: 32px
}

.note__box p {
    color: #e0e0e0;
    margin-bottom: 12px
}

.note__box p:last-child {
    margin-bottom: 0
}

.note__title {
    font-size: 32px;
    font-weight: 700;
    color: #00ff6c;
    margin-bottom: 16px
}

@media (max-width:768px) {
    .note__title {
        font-size: 24px
    }
}

.note__warning {
    color: #e74c3c !important;
    font-weight: 500
}

.faq {
    padding: 50px 0 60px
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.faq__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 30px
}

@media (max-width:768px) {
    .faq__title {
        font-size: 32px
    }
}

.faq__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.faq__item {
    background-color: #232c39;
    border: 1px solid #353a45;
    border-radius: 12px;
    padding: 24px
}

.faq__question {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

@media (max-width:768px) {
    .faq__question {
        font-size: 24px
    }
}

.footer {
    background-color: #050E19;
    border-top: 1px solid #353a45;
    padding: 50px 0 30px
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.footer__top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px
}

@media (max-width:768px) {
    .footer__top {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }
}

.footer__info p {
    font-size: 18px;
    margin-bottom: 10px
}

@media (max-width:768px) {
    .footer__info p {
        font-size: 16px
    }
}

.footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px
}

.footer__logo-img {
    width: 28px;
    height: 28px
}

.footer__logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff
}

.footer__important p {
    font-size: 18px;
    margin-bottom: 10px
}

@media (max-width:768px) {
    .footer__important p {
        font-size: 16px
    }
}

.footer__important-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px
}

@media (max-width:768px) {
    .footer__important-title {
        font-size: 20px
    }
}

.footer__nav {
    border-top: 1px solid #353a45;
    padding-top: 20px;
    margin-bottom: 20px
}

.footer__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.footer__nav-link {
    font-size: 16px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease
}

.footer__nav-link:hover {
    color: #fff
}

.footer__partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 32px;
    padding: 20px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.footer__partner-logo {
    height: 45px;
    width: auto;
    opacity: .7;
    -webkit-filter: grayscale(30%);
    filter: grayscale(30%);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease
}

.footer__partner-logo:hover {
    opacity: 1
}

.footer__bottom {
    border-top: 1px solid #353a45;
    padding-top: 20px;
    text-align: center
}

.footer__bottom p {
    font-size: 12px;
    color: #9a9da6;
    line-height: 1.6;
    margin-bottom: 4px
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 300;
    background-color: #232c39;
    border-top: 1px solid #353a45;
    padding: 28px 20px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease
}

.cookie-popup.is-visible {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.cookie-popup__inner {
    max-width: 1200px;
    margin: 0 auto
}

.cookie-popup__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px
}

.cookie-popup__text {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 8px
}

.cookie-popup__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    margin-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.cookie-popup__btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center
}

.cookie-popup__btn--accept {
    background: -webkit-gradient(linear, left top, left bottom, from(#ffa300), to(#fd6c0a));
    background: linear-gradient(180deg, #ffa300 0%, #fd6c0a 100%);
    color: #fff;
    border: none
}

.cookie-popup__btn--accept:hover {
    background-color: #fd6c0a
}

@media (max-width:768px) {
    .cookie-popup__btn--accept {
        width: 100%;
        max-width: 100%
    }
}

.cookie-popup__btn--reject {
    background-color: #fff0;
    color: #fff;
    border: 1px solid #fff
}

.cookie-popup__btn--reject:hover {
    background-color: rgb(255 255 255 / .1)
}

@media (max-width:768px) {
    .cookie-popup__btn--reject {
        width: 100%;
        max-width: 100%
    }
}

.cookie-popup__btn--manage {
    background-color: #fff0;
    color: #ffa300;
    border: 1px solid #ffa300
}

.cookie-popup__btn--manage:hover {
    background-color: rgb(255 163 0 / .1)
}

@media (max-width:768px) {
    .cookie-popup__btn--manage {
        width: 100%;
        max-width: 100%
    }
}

.page-hero {
    padding: 60px 0 40px
}

.page-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.page-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3
}

@media (max-width:768px) {
    .page-hero__title {
        font-size: 32px
    }
}

.page-hero__subtitle {
    font-size: 20px;
    line-height: 1.6
}

@media (max-width:768px) {
    .page-hero__subtitle {
        font-size: 18px
    }
}

.page-content {
    padding: 0 0 60px
}

.page-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.page-content__heading {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-top: 36px;
    margin-bottom: 14px;
    line-height: 1.3
}

.page-content__heading:first-child {
    margin-top: 0
}

@media (max-width:768px) {
    .page-content__heading {
        font-size: 24px
    }
}

.page-content__subheading {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 24px;
    margin-bottom: 10px
}

.page-content p {
    color: #e0e0e0;
    margin-bottom: 12px
}

.page-content__highlight {
    color: #ffa300 !important;
    font-weight: 500
}

.page-content__link {
    color: #ffa300;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease
}

.page-content__link:hover {
    color: #fd6c0a;
    text-decoration: underline
}

.page-content__list {
    margin: 8px 0 16px 20px;
    list-style: disc
}

.page-content__list li {
    color: #e0e0e0;
    margin-bottom: 4px
}

.page-content__list li strong {
    color: #fff;
    font-size: 20px
}

.page-content__feature-list {
    margin: 12px 0 20px 0;
    list-style: disc;
    padding-left: 20px
}

.page-content__feature-list li {
    color: #e0e0e0;
    margin-bottom: 12px
}

.page-content__feature-list li strong {
    display: block;
    color: #fff;
    margin-bottom: 2px;
    font-size: 20px
}

.page-content__legal-box {
    background-color: rgb(0 255 108 / .1);
    border: 2px solid #2ecc71;
    border-radius: 12px;
    padding: 28px 32px;
    margin-top: 40px
}

.page-content__legal-box p {
    color: #e0e0e0;
    margin-bottom: 8px
}

.page-content__legal-box p:last-child {
    margin-bottom: 0
}

.page-content__legal-title {
    font-size: 32px;
    font-weight: 700;
    color: #00ff6c;
    margin-bottom: 12px
}

@media (max-width:768px) {
    .page-content__legal-title {
        font-size: 24px
    }
}

.star {
    color: #f5a623
}