/* ./css/style.css - Добавлены стили для AOS в конец файла */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Poppins", sans-serif;
}

h1, h2, h3{
    font-family: "Sansation", sans-serif;
}

h1{
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
}

h2{
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

h3{
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.main-subtitle{
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.subtitle{
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.container{
    display: block;
    width: 100%;
    max-width: 1565px;
    margin: 0 auto;
}

.header{
    background: rgba(255, 255, 255, 0.10);
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 98;
    transition: background .3s ease;
}

.header.scrolled{
    background: #375FFF;
}

.header__wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
}

.header__navigation{
    display: flex;
    align-items: center;
    gap: 85px;
}


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

.header__navigation ul li{
    padding: 16px 20px;
    list-style: none;
}

.header__navigation ul li a{
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
    color: #FFF;
}

.btn__whatsapp{
    padding: 12px 21.5px;
    background-color: #EFF1FF;
    border: 1px solid #EFF1FF;
    color: #00E91F;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color .3s ease;
}

.btn__whatsapp:hover{
    background-color: transparent;
}

.btn__whatsapp-tablet{
    display: none;
}

/* БУРГЕР */
.burger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center;
}

.burger__bar {
  position: absolute; width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: transform .25s, opacity .25s, top .25s;
}
.burger__bar:nth-child(1){ top: 15px; }
.burger__bar:nth-child(2){ top: 21px; }
.burger__bar:nth-child(3){ top: 27px; }
/* Состояние КРЕСТ */
.header--menu-open .burger__bar:nth-child(1){ top: 21px; transform: rotate(45deg); }
.header--menu-open .burger__bar:nth-child(2){ opacity: 0; }
.header--menu-open .burger__bar:nth-child(3){ top: 21px; transform: rotate(-45deg); }

/* ДРОПДАУН-меню ПОД хедером */
.mobile-dropdown {
  position: fixed;
  left: 0; right: 0;
  top: var(--header-h);
  z-index: 9999; /* хедер выше (z-index:99) и всегда виден */
  display: block; /* всегда рендерим, но скрываем визуально */
  opacity: 0;
  visibility: hidden; /* скрываем от фокуса/тача */
  transform-origin: top;
  transform: translateY(-8px) scaleY(0.96);
  transition: transform .2s ease, opacity .2s ease, visibility .2s ease; /* добавили visibility в transition */
}

.header.header--menu-open .mobile-dropdown {
  opacity: 1;
  visibility: visible; /* показываем для фокуса/тача */
  transform: translateY(0) scaleY(1);
}

/* Внутренности меню */
.mobile-dropdown__nav{
  background: #ffffff; /* родственный #375FFF */
  color: #000000;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 40px rgb(0, 0, 0);
}
.mobile-dropdown__nav ul li{
    border-bottom: 1px solid #000000af;
}
.mobile-dropdown__nav ul{
  list-style: none; padding: 0; margin: 0 0 12px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-dropdown__nav li a{
  display: block; padding: 14px 12px; border-radius: 12px;
  text-decoration: none; color: #000000; font-weight: 700; font-size: 18px;
  background: rgba(255,255,255,0.08);
  transition: background .15s ease;
  
}
.mobile-dropdown__nav li a:hover{ background: rgba(255,255,255,0.16); }
.btn--whatsapp-mobile{
  background: #00E91F; color: #ffffff; border-radius: 12px; padding: 14px 18px;
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 700; width: 100%;
  max-width: 200px;
}

.hero{
    background-image: url('../img/hero-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 250px;
    padding-bottom: 200px;
}

.hero__wrapper{
    display: flex;
    flex-direction: column;
    gap: 200px;
}

.hero__main-info{
    width: 100%;
    max-width: 1000px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero__main-info-title{
    text-transform: uppercase;
    line-height: 96px;
}

.hero__main-info-subtitle{
    font-weight: 400;
    line-height: normal;
}

.btn{
    padding: 16px 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFF;
    text-decoration: none;
    background: #375FFF;
    transition: all .3s ease;
}

.btn:hover{
    background-color: transparent;
}

.hero__main-info-btn{
    width: 100%;
    max-width: 310px;
    border: 1px solid #375FFF;
}

.hero__advantages-cards{
    display: flex;
    gap: 60px;
}

.hero__advantages-card{
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(0deg, rgba(2, 22, 181, 0.20) 0%, rgba(2, 22, 181, 0.20) 100%), rgba(255, 255, 255, 0.10);
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    max-width: 455px;
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.services-process{
    padding-top: 200px;
    padding-bottom: 200px;
    position: relative;
    background-image: url('../img/services-process-bg.webp');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    
}

.services-process__wrapper{
    display: flex;
    flex-direction: column;
    gap: 300px;
}

.ants{
    position: absolute;
    top: -110px;
    width: 100%;
    left: 0px;
    z-index: 2;

}

.ants-xs{
    display: none;
}

.services__header{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 100px;
}

.services__subtitle{
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.services__cards{
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.services__card{
    display: flex;
    gap: 56px;
    padding: 32px;
    border-radius: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #00000015 100%);
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

}

.services-card-img-xs{
    display: none;
}

.services__card-info{
    display: flex;
    flex-direction: column;
    gap: 40px;

}

.services__card-description{
    color: #000;
    font-size: var(---, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 140% */
}

.services__btn{
    width: 100%;
    max-width: 215px;
    border: 1px solid #375FFF;
}

.services__btn:hover{
    color: #375FFF;
}

.process__title{
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 65px;
}

.process__cards {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}

/* ✅ Верхняя часть */
.process__top {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: repeat(2, auto);
  gap: 24px;
}

/* ✅ Нижняя часть */
.process__bottom {
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 24px;
}

.main__card .process__card-header{
    margin-bottom: 18px;    
}

.process__card-description{
    color: #FFF;
    font-size: var(---, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 140% */
}

.main__card .process__card-description{
    width: 100%;
    max-width: 380px;
}

.process__card{
    background-color: #375FFF;
    color: #FFFFFF;
    border-radius: 24px;
    padding: 24px 32px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.main__card{
    display: block;
    grid-row: span 2;
}

.process__card-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process__card-number{
    font-size: 64px;
    font-family: "Poppins", sans-serif;
}

.process__card-title{
    font-size: 32px;
}

.process__last-row{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.process__card-body{
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.process__card-btn{
    color: #375FFF;
    border: 1px solid #FFF;
    background-color: #FFF;
    width: 100%;
    max-width: 205px;
}

.process__card-btn:hover{
    color: #FFF;
}

.reviews{
    padding-top: 80px;
    padding-bottom: 130px;
    background-image: url('../img/reviews-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.reviews__title{
    margin-bottom: 40px;
}

.reviews__subtitle{
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 500;
}

.reviews__subtitle{
    margin-bottom: 60px;
}

.reviews__cards{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 60px;
    row-gap: 40px;
}

.reviews__card{
    background: linear-gradient(0deg, rgba(2, 22, 181, 0.2), rgba(2, 22, 181, 0.2)), rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(4px);
    padding: 32px;
    color: #FFFFFF;
}

.reviews__card-header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}

.reviews__card-body{
    font-size: 20px;
    margin-bottom: 28px;
}

.reviews__card-bottom{
    display: flex;
    justify-content: end;
    width: 100%;
}

.reviews__card-bottom p{
    font-size: 18px;
    opacity: .5;
}

.reviews__title, .reviews__subtitle{
    text-align: center;
    color: #FFF;
}

/* ===== CONTACT FORM ===== */
.contact__us {
  padding-top: 135px;
  padding-bottom: 135px;
  position: relative;
  overflow: hidden;
  z-index: 33;
}

.contact__us-img{
    position: absolute;
    right: 0;
    width: 700px;
    bottom: 0;
}

.cta-form {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 48px 40px;
  border-radius: 28px;

background: rgba(145, 145, 145, 0.1);
/* стекло */
border-radius: 48px;

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.cta-form__form h3, .cta-form__form p{
    text-align: center;
}

.cta-form__form h3{
    margin-bottom: 20px;
}

.cta-form__form p{
    margin-bottom: 95px;
}

.cta-form__title {
  text-align: center;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.2;
  color: #111827;
}

.cta-form__subtitle {
  text-align: center;
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 36px;
}

.cta-form__form {
    position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  max-width: 768px;
  padding: 64px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(145, 145, 145, 0.041);
  border-radius: 48px;

}

/* label + underline fields */
.cta-form__field label {
  display: block;
  font-size: 14px;
  color: #9ca3af; /* светло-серый, как на макете */
  margin-bottom: 10px;
}

.cta-form__field input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 14px 0 16px;
  font-size: 16px;
  background: transparent;
  border-bottom: 2px solid #e5e7eb;
  transition: border-color .2s ease;
}

.cta-form__field input:focus {
  border-bottom-color: #375FFF;
}

/* submit button — во всю ширину */
.cta-form__submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px 24px;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  background: #375FFF;
  border: #375FFF 1px solid;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: all .3s ease;
}
.cta-form__submit:hover { 
    color: #375FFF;
    background-color: transparent;

 }
.cta-form__submit:active { transform: translateY(1px); }

/* checkbox + подпись */
.cta-form__agree {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
  user-select: none;
}

.cta-form__agree input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: #fff;
  transition: all .15s ease;
  cursor: pointer;
}

.cta-form__agree input:checked {
  background: #375FFF;
  border-color: #375FFF;
  box-shadow: inset 0 0 0 3px #fff;
}

/* размер можно централизовать переменной */
:root { --chk-size: 18px; }

/* сам чекбокс */
.cta-form__agree input[type="checkbox"]{
  /* кроссбраузерно выключаем нативный стиль */
  -webkit-appearance: none;
  appearance: none;

  /* фиксируем квадрат + запрет сжатия во флексе */
  inline-size: var(--chk-size);
  block-size: var(--chk-size);
  min-inline-size: var(--chk-size);
  min-block-size: var(--chk-size);
  aspect-ratio: 1 / 1;        /* страховка от «сплющивания» */
  flex: 0 0 var(--chk-size);  /* НЕ сжимать, фиксированная база */
  flex-shrink: 0;             /* ещё разок, на всякий случай */

  /* коробка */
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  background-clip: padding-box;

  /* выравнивание галочки, если будете рисовать ::after */
  display: inline-grid;
  place-items: center;

  /* не даём line-height влиять на высоту строчного бокса */
  line-height: 0;

  /* плавность */
  transition: box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
}

/* состояние checked — как у тебя было, плюс фокус */
.cta-form__agree input[type="checkbox"]:checked{
  background-color: #375FFF;
  border-color: #375FFF;
  box-shadow: inset 0 0 0 3px #fff;
}

.cta-form__agree input[type="checkbox"]:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(55,95,255,.35),
    inset 0 0 0 3px #fff;
}

.footer{
    padding-top: 130px;
    padding-bottom: 50px;
    background-image: url('../img/footer-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer__wrapper{
    display: flex;
    flex-direction: column;
    align-items: end;
}

.footer__contacts{
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin-right: 190px;
}

.footer__contacts-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__contacts-info-item{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFF;
    gap: 20px;
}

.footer__contacts-info-item img{
    width: 28px;
}

.footer__contacts-info-time img{
    width: 25px;
}

.footer-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.footer-btn{
    width: 100%;
    max-width: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.footer__contacts-title{
    color: #FFF;
}

.footer__nav{
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 180px;
    align-items: center;
    border-top: 1px solid #FFFFFF;
    padding-top: 50px;
    flex-direction: column;
    gap: 50px;
}

.footer__nav ul{
    display: flex;
    gap: 60px;
}

.footer__nav ul li{
    list-style: none;
    padding: 16px 32px;
}

.footer__nav ul li a{
    text-decoration: none;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
}

.footer__nav p{
    color: #FFF;
}

.footer__nav p a{
    text-decoration: none;
    color: #375FFF;
}

/* Ошибки в форме */
.error-message {
    display: none;
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

.error-message.show {
    display: block;
}

/* Попап успеха */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.success-popup.show {
    display: flex;
}

.success-popup__content {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-popup__content h3 {
    color: #375FFF;
    margin-bottom: 16px;
    font-size: 24px;
}

.success-popup__content p {
    color: #6b7280;
    margin-bottom: 24px;
}

#close-popup {
    background: #375FFF;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    max-width: 200px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Для мобильки попап */
@media (max-width: 640px) {
    .success-popup__content {
        padding: 24px;
        margin: 20px;
    }
}

/* AOS стили для предварительного скрытия элементов */
[data-aos] {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-aos="fade-right"] {
    transform: translate3d(-50px, 0, 0);
}

[data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0);
}

[data-aos="slide-up"] {
    transform: translate3d(0, 50px, 0);
}

[data-aos="slide-up"].aos-animate {
    transform: translate3d(0, 0, 0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="fade-down"] {
    transform: translate3d(0, -50px, 0);
}

[data-aos="fade-down"].aos-animate {
    transform: translate3d(0, 0, 0);
}

/* Добавьте эти стили в ./css/style.css для новой страницы (расширенная адаптивность) */

/* Hero для политики */
.privacy-hero {
    background: linear-gradient(135deg, #375FFF 0%, #1e3a8a 100%);
    padding-top: 350px;
    padding-bottom: 200px;
    color: #FFF;
    text-align: center;
}

.privacy-hero__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.privacy-hero__title {
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 800px;
}

.privacy-hero__subtitle {
    font-size: 24px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Контент политики */
.privacy-content {
    padding-top: 100px;
    padding-bottom: 150px;
    background: #FFF;
}

.privacy-content__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 80px;
}

.privacy-section__title {
    font-size: 32px;
    font-weight: 700;
    color: #375FFF;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.privacy-section__text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
}

.privacy-section__list {
    list-style: none;
    padding-left: 0;
}

.privacy-section__list li {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.privacy-section__list li::before {
    content: "•";
    color: #375FFF;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Адаптив */

/* Tablet: max-width 1024px */
@media screen and (max-width: 1024px) {
    .privacy-hero {
        padding-top: 300px;
        padding-bottom: 150px;
    }

    .privacy-hero__title {
        font-size: 56px;
        max-width: 700px;
    }

    .privacy-hero__subtitle {
        font-size: 22px;
        max-width: 500px;
    }

    .privacy-content {
        padding-top: 80px;
        padding-bottom: 120px;
    }

    .privacy-section {
        margin-bottom: 60px;
    }

    .privacy-section__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .privacy-section__text,
    .privacy-section__list li {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Small tablet / Large mobile: max-width 768px */
@media screen and (max-width: 768px) {
    .privacy-hero {
        padding-top: 250px;
        padding-bottom: 120px;
    }

    .privacy-hero__title {
        font-size: 48px;
        line-height: 1.1;
        max-width: 90%;
    }

    .privacy-hero__subtitle {
        font-size: 20px;
        max-width: 90%;
        padding: 0 20px;
    }

    .privacy-content {
        padding-top: 60px;
        padding-bottom: 100px;
    }

    .privacy-content__wrapper {
        padding: 0 20px;
    }

    .privacy-section {
        margin-bottom: 50px;
    }

    .privacy-section__title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .privacy-section__text {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .privacy-section__list li {
        font-size: 16px;
        margin-bottom: 10px;
        padding-left: 18px;
    }

    .privacy-section__list li::before {
        font-size: 24px;
        left: -2px;
    }
}

/* Mobile: max-width 640px */
@media screen and (max-width: 640px) {
    .privacy-hero {
        padding-top: 200px;
        padding-bottom: 100px;
    }

    .privacy-hero__title {
        font-size: 36px;
        line-height: 1;
    }

    .privacy-hero__subtitle {
        font-size: 18px;
        padding: 0 16px;
    }

    .privacy-content {
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .privacy-section {
        margin-bottom: 40px;
    }

    .privacy-section__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .privacy-section__text {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .privacy-section__list li {
        font-size: 15px;
        margin-bottom: 8px;
        padding-left: 16px;
    }

    .privacy-section__list li::before {
        font-size: 20px;
    }
}

/* Small mobile: max-width 480px */
@media screen and (max-width: 480px) {
    .privacy-hero {
        padding-top: 180px;
        padding-bottom: 80px;
    }

    .privacy-hero__title {
        font-size: 22px;
        padding: 0 16px;
    }

    .privacy-hero__subtitle {
        font-size: 16px;
        padding: 0 16px;
    }

    .privacy-content {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .privacy-section {
        margin-bottom: 30px;
    }

    .privacy-section__title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .privacy-section__text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .privacy-section__list li {
        font-size: 14px;
        margin-bottom: 6px;
        padding-left: 14px;
    }

    .privacy-section__list li::before {
        font-size: 18px;
    }

    .footer__wrapper{
        align-items: start;
    }
}

/* Extra small mobile: max-width 360px */
@media screen and (max-width: 360px) {
    .privacy-hero__title {
        font-size: 18px;
    }

    .privacy-hero__subtitle {
        font-size: 10px;
    }

    .privacy-section__title {
        font-size: 20px;
    }

    .privacy-section__text,
    .privacy-section__list li {
        font-size: 13px;
    }
}


.footer__company-info{
    color: white;
}