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

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #0D122C;
    color: #FFFFFF;
    line-height: 1.2;
    min-height: 100vh;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

input, textarea {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 42px;
    width: 100%;
}

.header {
    background: #000000;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 42px;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 110;
}

.header__logo-icon {
    color: #F0E346;
    font-size: 24px;
}

.header__logo-text {
    font-weight: 700;
    font-size: 24px;
    text-transform: capitalize;
    color: #FFFFFF;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__link {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: color 0.2s ease;
}

.header__link:hover,
.header__link--active {
    color: #F0E346;
}

.header__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #111622;
    border: 1px solid #F0E346;
    border-radius: 6px;
    z-index: 110;
}

.header__badge-text {
    font-weight: 700;
    font-size: 14px;
    color: #F0E346;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 110;
}

.header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
    background: #111622;
    padding: 72px 0;
}

.hero > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.hero__subtitle {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #F0E346;
}

.hero__title {
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    color: #FFFFFF;
}

.hero__description {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
}

.hero__badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: #111622;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 6px;
}

.hero__badge-icon {
    color: #F0E346;
    font-size: 24px;
}

.hero__badge-text {
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
}

.featured {
    background: #111622;
    padding: 72px 0;
}

.featured__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-bottom: 48px;
}

.featured__title {
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    color: #FFFFFF;
}

.featured__description {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
}

.featured__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.featured__card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #070C18;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 6px;
}

.featured__card-logo {
    flex-shrink: 0;
    width: 280px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
}

.featured__card-img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.featured__card-rating {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.featured__card-score {
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    color: #FFFFFF;
}

.featured__card-stars {
    display: flex;
    gap: 2px;
}

.featured__star {
    color: #F0E346;
    font-size: 20px;
}

.featured__card-votes {
    font-weight: 500;
    font-size: 14px;
    color: #B7B9BC;
}

.featured__card-offer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.featured__card-bonus {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #FFFFFF;
    text-transform: uppercase;
}

.featured__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #F0E346;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #070701;
    transition: background 0.2s ease, transform 0.2s ease;
}

.featured__card-btn:hover {
    background: #e0d430;
    transform: translateY(-1px);
}

.stats {
    background: #070C18;
}

.stats__grid {
    display: flex;
}

.stats__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 72px 0;
    border-right: 1px solid rgba(240, 227, 70, 0.3);
}

.stats__item:first-child {
    padding-left: 42px;
}

.stats__item:last-child {
    padding-right: 42px;
    border-right: none;
}

.stats__number {
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    color: #F0E346;
}

.stats__label {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
    text-align: center;
}

.why,
.howto,
.faq,
.guide-steps,
.about-mission,
.about-values,
.contact {
    padding: 72px 0;
}

.why {
    background: #111622;
}

.why__header,
.howto__header,
.faq__header,
.guide-steps__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
    text-align: center;
}

.why__subtitle,
.howto__subtitle,
.faq__subtitle,
.guide-steps__subtitle {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #F0E346;
}

.why__title,
.howto__title,
.faq__title,
.guide-steps__title {
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    color: #FFFFFF;
}

.why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: #111622;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 6px;
}

.why__card-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.why__card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #111622;
    border: 1px solid #F0E346;
    border-radius: 6px;
}

.why__card-icon {
    color: #F0E346;
    font-size: 24px;
}

.why__card-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #FFFFFF;
}

.why__card-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
}

.howto {
    background: #070C18;
}

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

.howto__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: #111622;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 6px;
}

.howto__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.howto__card-number {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #F0E346;
}

.howto__card-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #FFFFFF;
}

.howto__card-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
}

.faq {
    background: #111622;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq__item {
    background: #111622;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 6px;
    overflow: hidden;
}

.faq__question {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 24px;
    background: transparent;
    color: #FFFFFF;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq__question:hover {
    background: rgba(240, 227, 70, 0.03);
}

.faq__number {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #F0E346;
    flex-shrink: 0;
}

.faq__question-text {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #FFFFFF;
    flex: 1;
}

.faq__arrow {
    color: #FFFFFF;
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__answer {
    padding: 0 24px 24px;
}

.faq__answer[hidden] {
    display: none;
}

.faq__answer p {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
}

.cta {
    background: #070C18;
    padding: 72px 0;
}

.cta > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.cta__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.cta__subtitle {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #F0E346;
}

.cta__title {
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    color: #FFFFFF;
}

.cta__description {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
}

.cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #F0E346;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #070701;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta__button:hover {
    background: #e0d430;
    transform: translateY(-1px);
}

.footer {
    background: #000000;
}

.footer > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer__top {
    width: 100%;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer__logo-icon {
    color: #F0E346;
    font-size: 24px;
}

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

.footer__description {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    color: #B7B9BC;
}

.footer__divider {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(240, 227, 70, 0.3);
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer__link {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #F0E346;
}

.footer__partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.footer__partner-img {
    height: 53px;
    width: auto;
    object-fit: contain;
}

.footer__badge-img {
    width: 48px;
    height: 48px;
}

.footer__warning {
    width: 100%;
    padding: 24px;
    background: #070C18;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__warning-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
}

.footer__warning-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #B7B9BC;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer__copyright,
.footer__responsible {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #B7B9BC;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 48px);
    max-width: 720px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner--visible {
    opacity: 1;
    visibility: visible;
}

.cookie-banner__content {
    background: #111622;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-banner__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner__title {
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
}

.cookie-banner__close {
    font-size: 28px;
    color: #FFFFFF;
    background: transparent;
    padding: 0 4px;
    line-height: 1;
}

.cookie-banner__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #B7B9BC;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
}

.cookie-banner__btn {
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: background 0.2s ease;
    cursor: pointer;
}

.cookie-banner__btn--accept {
    background: #F0E346;
    color: #070701;
    border: none;
}

.cookie-banner__btn--accept:hover {
    background: #e0d430;
}

.cookie-banner__btn--settings {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.cookie-banner__btn--settings:hover {
    border-color: #FFFFFF;
}

.cookie-banner__btn--reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.cookie-banner__btn--reject:hover {
    border-color: #FFFFFF;
}

.page-hero {
    background: #111622;
    padding: 72px 0;
}

.page-hero__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.page-hero__subtitle {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #F0E346;
}

.page-hero__title {
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    color: #FFFFFF;
}

.page-hero__description {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
}

.guide-steps {
    background: #070C18;
}

.guide-steps__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guide-step {
    padding: 24px;
    background: #111622;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-step__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-step__number {
    font-weight: 700;
    font-size: 24px;
    color: #F0E346;
    flex-shrink: 0;
}

.guide-step__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #FFFFFF;
}

.guide-step__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
}

.about-mission {
    background: #111622;
}

.about-mission__title {
    font-weight: 700;
    font-size: 24px;
    color: #F0E346;
    margin-bottom: 24px;
}

.about-mission__content {
    padding: 24px;
    background: #111622;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-mission__content p {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
}

.about-values {
    background: #070C18;
}

.about-values__title {
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 48px;
}

.about-values__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-values__card {
    padding: 24px;
    background: #111622;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-values__card-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.about-values__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #111622;
    border: 1px solid #F0E346;
    border-radius: 6px;
}

.about-values__icon {
    color: #F0E346;
    font-size: 24px;
}

.about-values__card-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #FFFFFF;
}

.about-values__card-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
}

.contact {
    background: #111622;
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__card {
    padding: 24px;
    background: #111622;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact__card-title {
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
}

.contact__card-value {
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
}

.contact__card-note {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #B7B9BC;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__label {
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
}

.contact__input {
    padding: 14px 16px;
    background: #070C18;
    border: 1px solid rgba(240, 227, 70, 0.3);
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact__input::placeholder {
    color: #6B6D70;
}

.contact__input:focus {
    border-color: #F0E346;
}

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

.contact__submit {
    padding: 14px 28px;
    background: #F0E346;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #070701;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact__submit:hover {
    background: #e0d430;
}

.legal {
    background: #111622;
    padding: 72px 0;
}

.legal__content {
    max-width: 100%;
}

.legal__title {
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.legal__date {
    font-weight: 500;
    font-size: 16px;
    color: #B7B9BC;
    margin-bottom: 32px;
}

.legal__content h2 {
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal__content p {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
    margin-bottom: 12px;
}

.legal__content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 12px;
}

.legal__content li {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    
    .header__nav {
        padding: 16px 20px;
    }

    .header__menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0D122C;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 105;
    }

    .header__menu--open {
        display: flex;
    }

    .header__link {
        font-size: 20px;
    }

    .header__burger {
        display: flex;
    }

    .header__burger--open .header__burger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header__burger--open .header__burger-line:nth-child(2) {
        opacity: 0;
    }

    .header__burger--open .header__burger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .container {
        padding: 0 20px;
    }

    
    .hero {
        padding: 48px 0;
    }

    .hero > .container {
        gap: 32px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__description {
        font-size: 16px;
    }

    .hero__badges {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__badge-text {
        font-size: 16px;
    }

    
    .stats__grid {
        flex-direction: column;
    }

    .stats__item {
        padding: 32px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(240, 227, 70, 0.3);
    }

    .stats__item:first-child {
        padding-left: 0;
    }

    .stats__item:last-child {
        padding-right: 0;
        border-bottom: none;
    }

    .stats__number {
        font-size: 36px;
    }

    .stats__label {
        font-size: 16px;
    }

    
    .why,
    .howto,
    .faq,
    .cta,
    .featured,
    .guide-steps,
    .about-mission,
    .about-values,
    .contact,
    .legal,
    .page-hero {
        padding: 48px 0;
    }

    .why__title,
    .howto__title,
    .faq__title,
    .guide-steps__title,
    .cta__title,
    .page-hero__title,
    .legal__title,
    .about-values__title,
    .featured__title {
        font-size: 28px;
    }

    .featured__card {
        flex-direction: column;
        text-align: center;
    }

    .featured__card-logo {
        width: 100%;
        height: 80px;
    }

    .featured__card-bonus {
        font-size: 16px;
    }

    .featured__description {
        font-size: 16px;
    }

    .why__subtitle,
    .howto__subtitle,
    .faq__subtitle,
    .guide-steps__subtitle,
    .cta__subtitle,
    .page-hero__subtitle {
        font-size: 18px;
    }

    .why__grid {
        grid-template-columns: 1fr;
    }

    .why__card-title {
        font-size: 20px;
    }

    .why__card-text {
        font-size: 16px;
    }

    
    .howto__grid {
        grid-template-columns: 1fr;
    }

    .howto__card-title {
        font-size: 20px;
    }

    .howto__card-text {
        font-size: 16px;
    }

    
    .faq__question-text {
        font-size: 18px;
    }

    .faq__number {
        font-size: 18px;
    }

    .faq__answer p {
        font-size: 16px;
    }

    
    .cta {
        gap: 32px;
    }

    .cta__description {
        font-size: 16px;
    }

    .cta__button {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    
    .footer > .container {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .footer__description {
        font-size: 16px;
    }

    .footer__links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer__link {
        font-size: 16px;
    }

    .footer__partners {
        gap: 20px;
    }

    .footer__partner-img {
        height: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer__copyright,
    .footer__responsible {
        font-size: 14px;
    }

    
    .cookie-banner {
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__btn {
        width: 100%;
        text-align: center;
    }

    
    .page-hero__title {
        font-size: 28px;
    }

    .page-hero__description {
        font-size: 16px;
    }

    
    .guide-step__title {
        font-size: 20px;
    }

    .guide-step__text {
        font-size: 16px;
    }

    
    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-values__card-title {
        font-size: 20px;
    }

    .about-values__card-text {
        font-size: 16px;
    }

    
    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    
    .legal__title {
        font-size: 28px;
    }

    .legal__content p,
    .legal__content li {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero__title {
        font-size: 36px;
    }

    .why__title,
    .howto__title,
    .faq__title,
    .cta__title,
    .page-hero__title,
    .legal__title,
    .about-values__title,
    .guide-steps__title,
    .featured__title {
        font-size: 36px;
    }

    .howto__grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq__question-text {
        font-size: 20px;
    }
}