body {
  font-family: 'Montserrat Alternates', Arial, sans-serif;
  margin: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #DFF8A0 60%, #87CC47 100%);
  color: #222;
}

.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 24px 0 16px 0;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 40px;
}
.nav {
  display: flex;
  gap: 32px;
}
.nav__link {
  color: #222;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: color 0.2s;
}
.nav__link.active, .nav__link:hover {
  color: #87CC47;
}
.appstore-link img {
  height: 36px;
}

.hero {
  padding: 48px 0 0 0;
  background: 
    linear-gradient(to bottom, transparent 0%, transparent 50%, #DFF8A0 50%, #87CC47 100%),
    linear-gradient(to bottom, #FFFFFF 35%, #DFF8A0 50%, #87CC47 100%)
}
.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hero__badge {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 8px 24px;
  font-size: 16px;
  margin-bottom: 32px;
  gap: 12px;
}
.hero__badge img {
  height: 32px;
}
.hero__title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.1;
}
.hero__subtitle {
  color: #BDBDBD;
  font-weight: 400;
  font-size: 48px;
}
.hero__desc {
  font-size: 18px;
  color: #222;
  text-align: center;
  margin: 24px 0 40px 0;
  max-width: 700px;
}
.hero__visuals {
  position: relative;
  width: 1200px;
  height: 570px; /* Зменшено ще на 50px (з 620px) */
  margin: 0 auto;
  display: block;
  overflow: hidden; /* Маскування частин, що виходять за межі */
}

/* Центральний айфон */
.phone-mockup-img {
  position: absolute;
  left: 50%;
  top: calc(54% + 25px); /* Піднято на 50px вище (було 75px, стало 25px) */
  width: 331px; /* Ширина встановлена */
  height: auto; /* Висота автоматична для збереження пропорцій */
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Credit Score */
.credit-score-img {
  position: absolute;
  left: 90px; /* трохи ближче до центру */
  top: 120px; /* трохи нижче */
  width: 210px;
  height: 200px;
  z-index: 2;
}

/* Лінії над credit score */
.decor--top-left {
  position: absolute;
  left: 110px; /* ближче до credit-score */
  top: 90px; /* майже впритул над рейтингом */
  width: 38px; /* трохи більші */
  height: 38px;
  z-index: 3;
}

/* lender card */
.lender-card-img {
  position: absolute;
  left: 70px;
  top: 350px;
  width: 300px;
  height: 190px;
  z-index: 2;
}

/* Стрілка зліва */
.decor--arrow-left {
  position: absolute;
  left: 260px; /* ближче до айфона */
  top: 220px; /* вирівняно з рейтингом */
  width: 90px;
  height: 90px;
  transform: rotate(-25deg);
  z-index: 3;
}

/* percent icon */
.percent-icon-img {
  position: absolute;
  right: 120px;
  top: 110px;
  width: 150px;
  height: 145px;
  z-index: 2;
}

/* Стрілка справа */
.decor--arrow-right {
  position: absolute;
  right: 260px; /* ближче до айфона */
  top: 340px; /* вказує на валюту */
  width: 90px;
  height: 90px;
  transform: rotate(20deg);
  z-index: 3;
}

/* currency card */
.currency-card-img {
  position: absolute;
  right: 70px;
  top: 400px;
  width: 320px;
  height: 146px;
  z-index: 2;
}

/* Лінії над currency card */
.decor--bottom-right {
  position: absolute;
  right: 110px; /* ближче до currency card */
  top: 390px; /* майже впритул над карткою */
  width: 38px;
  height: 38px;
  transform: rotate(180deg);
  z-index: 3;
}

.footer {
  background: #111;
  padding: 56px 0 32px 0;
  color: #BDBDBD;
  font-size: 15px;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer__logo {
  height: 48px;
}
.footer__brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.footer__nav {
  display: flex;
  gap: 40px;
}
.footer__nav-link {
  color: #BDBDBD;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer__nav-link:hover {
  color: #87CC47;
}
.footer__appstore img {
  height: 56px;
}
.footer__desc {
  color: #A0A0A0;
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.5;
  max-width: 1000px;
}

.decor {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.decor--top-left {
  top: -40px;
  left: -60px;
  width: 48px;
  height: 48px;
  transform: none;
}
.decor--arrow-left {
  left: 0;
  top: 180px;
  width: 90px;
  height: 60px;
  transform: translate(-80px, -60px);
}
.decor--arrow-right {
  right: 0;
  top: 180px;
  width: 90px;
  height: 60px;
  transform: translate(80px, -60px);
}
.decor--bottom-right {
  right: -60px;
  bottom: -40px;
  width: 48px;
  height: 48px;
  transform: none;
}

.partners-section {
  background: #fafafa;
  padding: 48px 0 40px 0;
}
.partners__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.partners__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #222;
}
.partners__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.partner-logo {
  max-width: 180px;
  max-height: 60px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.2s;
}
.partner-logo:hover {
  filter: grayscale(60%);
}

.features-section {
  background: #fff;
  padding: 80px 0 80px 0;
}
.features__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.features__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #222;
}
.features__title--light {
  color: #BDBDBD;
  font-weight: 400;
}
.features__subtitle {
  font-size: 20px;
  color: #222;
  margin-bottom: 56px;
}
.features__cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.feature-card {
  background: #fff;
  border: 2px solid #F0F0F0;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  padding: 40px 32px 32px 32px;
  max-width: 350px;
  min-width: 300px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  box-shadow: 0 4px 32px rgba(135,204,71,0.10);
  border-color: #DFF8A0;
}
.feature-card__icon {
  background: transparent;
  border-radius: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-card__icon img {
  width: 56px;
  height: 56px;
}
.feature-card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #222;
  text-align: left;
}
.feature-card__desc {
  font-size: 16px;
  color: #BDBDBD;
  text-align: left;
  margin: 0;
}

.easy-section {
  background: #fafafa;
  padding: 80px 0 80px 0;
}
.easy-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  overflow: hidden;
}
.easy-section__content {
  flex: 1 1 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.easy-section__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}
.easy-section__title--light {
  color: #BDBDBD;
  font-weight: 400;
}
.easy-section__desc {
  font-size: 17px;
  color: #222;
  margin-bottom: 0;
  max-width: 600px;
}
.easy-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.easy-section__item {
  display: flex;
  align-items: center !important;
  flex-direction: row;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 22px 32px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  min-height: 64px;
  line-height: 1.4;
  max-width: 520px;
  width: 100%;
}
.easy-section__item b {
  font-weight: 700;
}
.easy-section__icon {
  background: transparent;
  border-radius: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 0;
  margin-bottom: 0;
  align-self: center;
}
.easy-section__icon img {
  width: 50px;
  height: 50px;
}
.easy-section__item:last-child {
  flex-wrap: wrap;
}
.easy-section__image {
  flex: 0 0 48%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0;
  height: 100%;
}
.easy-section__image img {
  max-width: 520px;
  width: 100%;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(135,204,71,0.10);
}
.easy-section__text {
  display: block;
  width: 100%;
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
  text-align: left;
  flex: 1;
}

.faq-section {
  background: #fff;
  padding: 80px 0 80px 0;
}
.faq__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
.faq__illustration {
  flex: 0 0 44%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 60px;
}
.faq__illustration img {
  max-width: 420px;
  width: 100%;
  height: auto;
}
.faq__content {
  flex: 1 1 56%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #222;
}
.faq__title--light {
  color: #BDBDBD;
  font-weight: 400;
}
.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  padding: 28px 0 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.2s;
  text-align: left;
}
.faq-question:hover {
  color: #87CC47;
}
.faq-toggle {
  background: transparent;
  border-radius: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  flex-shrink: 0;
}
.faq-toggle img {
  width: 56px;
  height: 56px;
}
.faq-answer {
  font-size: 17px;
  color: #BDBDBD;
  line-height: 1.5;
  padding: 0 0 28px 0;
  max-width: 90%;
  display: none;
  transition: all 0.3s;
}
.faq-item.active .faq-answer {
  display: block;
}

.cta-section {
  background: linear-gradient(180deg, #fff 0%, #DFF8A0 60%, #87CC47 100%);
  padding: 64px 0 0 0;
}
.cta__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 480px;
}
.cta__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  z-index: 2;
}
.cta__title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #222;
  line-height: 1.1;
}
.cta__title--light {
  color: #BDBDBD;
  font-weight: 400;
}
.cta__desc {
  font-size: 20px;
  color: #222;
  margin-bottom: 24px;
}
.cta__appstore img {
  height: 56px;
}
.cta__visuals {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 420px;
}
.cta__girl {
  max-width: 480px; /* Збільшено на 20% (з 400px) */
  width: 100%;
  height: auto;
  z-index: 2;
  position: relative;
  margin-top: 30px; /* Опущено на 30px нижче */
}
.cta__decor-arrow {
  position: absolute;
  left: 40px;
  bottom: 120px;
  width: 70px;
  height: 70px;
  z-index: 1;
}
.cta__decor-lines {
  position: absolute;
  right: 60px;
  top: 40px;
  width: 48px;
  height: 48px;
  z-index: 1;
} 

.partners-list-section {
  background: #f7f7f7;
  padding: 64px 0 80px 0;
}
.partners-list__container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.partners-list__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}
.partners-list__subtitle {
  font-size: 20px;
  color: #222;
  margin-bottom: 36px;
}
.partners-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 36px;
}
.partner-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  height: 160px;
  max-height: 160px;
  overflow: hidden;
}
.partner-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
}
.partner-card__logo-frame {
  background: #F7F7F7;
  border-radius: 12px;
  width: 180px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.partner-card__logo {
  max-height: 68px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-card__rating-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-left: auto;
}
.partner-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat Alternates', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}
.partner-card__reviews {
  font-size: 15px;
  color: #BDBDBD;
  font-weight: 400;
}
.partner-card__star {
  width: 22px;
  height: 22px;
}

.partner-card__bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-card__info {
  background: #F7F7F7;
  border: none;
  border-radius: 12px;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  max-width: 58px;
  max-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
.partner-card__info:hover {
  background: #DFF8A0;
}
.partner-card__info img {
  width: 20px;
  height: 20px;
}
.partner-card__link {
  background: #111;
  color: #fff;
  border-radius: 12px;
  height: 58px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
.partner-card__link:hover {
  background: #87CC47;
  color: #111;
} 

.partner-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
}
.partner-modal.active {
  display: block;
}
.partner-modal__overlay {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.partner-modal__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 24px;
  max-width: 900px;
  width: 95vw;
  padding: 40px 36px 32px 36px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.partner-modal__close {
  position: absolute;
  top: 12px;
  right: 20px;
  background: none;
  border: none;
  font-size: 36px;
  color: #222;
  cursor: pointer;
  z-index: 3;
  transition: color 0.2s;
}
.partner-modal__close:hover {
  color: #87CC47;
}
.partner-modal__header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 12px;
}
.partner-modal__logo {
  height: 64px;
  width: auto;
  border-radius: 14px;
  background: #f7f7f7;
  padding: 8px 18px;
}
.partner-modal__info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.partner-modal__name {
  font-size: 22px;
  font-weight: 700;
  color: #222;
}
.partner-modal__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.partner-modal__rating img {
  width: 20px;
  height: 20px;
}
.partner-modal__reviews {
  color: #BDBDBD;
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}
.partner-modal__link {
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-left: auto;
  display: inline-block;
}
.partner-modal__link:hover {
  background: #87CC47;
  color: #111;
}
.partner-modal__section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}
.partner-modal__details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 18px;
  margin-bottom: 18px;
}
.partner-modal__detail {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 18px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partner-modal__detail-label {
  color: #BDBDBD;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
.partner-modal__detail-value {
  color: #222;
  font-size: 17px;
  font-weight: 500;
}
.partner-modal__example {
  margin-top: 12px;
}
.partner-modal__example-label {
  color: #BDBDBD;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
.partner-modal__example-value {
  color: #222;
  font-size: 16px;
  font-weight: 400;
}
.partner-modal__example-box {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 18px 18px 14px 18px;
  margin-top: 0;
}
@media (max-width: 900px) {
  .partner-modal__content {
    max-width: 98vw;
    padding: 24px 8px 18px 8px;
  }
  .partner-modal__details-grid {
    grid-template-columns: 1fr;
  }
  .partner-modal__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .partner-modal__link {
    margin-left: 0;
    margin-top: 12px;
  }
} 

/* CONTACTS PAGE */
.contacts-section {
  background: #f8f9f6;
  padding: 64px 0 64px 0;
}
.contacts__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.contacts__card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(135, 204, 71, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 56px 48px;
  gap: 64px;
}
.contacts__info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contacts__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #222;
}
.contacts__title--light {
  color: #9e9e9e;
  font-weight: 400;
  font-size: 32px;
}
.contacts__subtitle {
  font-size: 16px;
  color: #222;
  margin-bottom: 36px;
  margin-top: 0;
}
.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contacts__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contacts__icon {
  background: transparent;
  border-radius: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts__icon img {
  width: 56px;
  height: 56px;
}
.contacts__label {
  color: #bdbdbd;
  font-size: 15px;
  margin-bottom: 2px;
}
.contacts__value {
  color: #222;
  font-size: 18px;
  font-weight: 500;
}
.contacts__map {
  flex: 1 1 0;
  min-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.contacts__map iframe {
  width: 100%;
  max-width: 480px;
  height: 360px;
  max-height: 380px;
  border-radius: 24px;
  border: none;
}

@media (max-width: 900px) {
  .contacts__card {
    flex-direction: column;
    padding: 32px 16px;
    gap: 32px;
  }
  .contacts__map {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contacts-section {
    padding: 32px 0;
  }
  .contacts__card {
    padding: 16px 4px;
    border-radius: 18px;
  }
  .contacts__title {
    font-size: 26px;
  }
  .contacts__subtitle {
    font-size: 15px;
  }
  .contacts__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .contacts__icon img {
    width: 20px;
    height: 20px;
  }
  .contacts__value {
    font-size: 16px;
  }
} 

/* TERMS PAGE */
.terms-section {
  background: #f8f9f6;
  padding: 64px 0 64px 0;
}
.terms__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.terms__card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(135, 204, 71, 0.07);
  padding: 56px 64px 64px 64px;
}
.terms__title {
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 32px 0;
  color: #222;
}
.terms__date {
  color: #888;
  font-size: 16px;
  margin-bottom: 40px;
}
.terms__subtitle {
  font-size: 28px;
  font-weight: 700;
  margin: 48px 0 16px 0;
  color: #222;
}
.terms__text {
  font-size: 18px;
  color: #222;
  margin: 0 0 24px 0;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .terms__card {
    padding: 32px 12px 32px 12px;
    border-radius: 18px;
  }
  .terms__title {
    font-size: 28px;
  }
  .terms__subtitle {
    font-size: 20px;
  }
  .terms__text {
    font-size: 15px;
  }
} 