@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/InterTight-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Serpantin';
  src: url('../fonts/Serpantin.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Segoe Script';
  src: url('../fonts/segoescript.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.3s ease;
  z-index: -1;
}

.header--scrolled::before {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 70px 20px 70px;
  height: 92px;
  position: relative;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 267px;
  height: 72px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__link {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.header__link:hover {
  text-decoration: underline;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.header__phone:hover {
  text-decoration: underline;
}

.header__phone-icon {
  width: 20px;
  height: 20px;
}

.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid rgba(200, 200, 200, 0.35);
  background: rgba(148, 148, 148, 0.32);
  backdrop-filter: blur(54px);
  -webkit-backdrop-filter: blur(54px);
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__burger-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__mobile-menu {
  display: none;
}

@media (max-width: 1440px) {
  .header__container {
    padding: 16px 40px;
    height: 82px;
  }
  .header__logo img {
    width: 220px;
    height: 60px;
  }
  .header__link {
    font-size: 16px;
  }
  .header__nav {
    gap: 12px;
  }
  .header__phone {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .header__container {
    padding: 12px 24px;
    height: 72px;
  }
  .header__logo img {
    width: 200px;
    height: 54px;
  }
  .header__nav {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .header__phone {
    font-size: 16px;
  }
  .header__mobile-menu {
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 66px;
    right: 24px;
    width: 192px;
    border-radius: 6px;
    padding: 16px 12px;
    border: 1px solid rgba(200, 200, 200, 0.35);
    background: rgba(148, 148, 148, 0.32);
    backdrop-filter: blur(54px);
    -webkit-backdrop-filter: blur(54px);
    z-index: 200;
  }
  .header__mobile-menu[style*="block"] {
    display: flex !important;
  }
  .header__mobile-link {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .header__mobile-link:hover {
    text-decoration: underline;
  }
  .header__mobile-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
  }
  .header__mobile-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .header__mobile-phone:hover {
    text-decoration: underline;
  }
  .header__mobile-phone-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 576px) {
  .header__container {
    padding: 10px 16px;
    height: 62px;
  }
  .header__logo img {
    width: 170px;
    height: 46px;
  }
  .header__phone {
    display: none;
  }
  .header__mobile-menu {
    top: 56px;
    right: 16px;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: var(--app-height, 100vh);
  min-height: 750px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.1);
  transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero--animated .hero__bg img {
  transform: scale(1);
}

.hero__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(33, 122, 75, 0) 0%,
    rgba(33, 122, 75, 0.4) 50%,
    rgba(33, 122, 75, 0.85) 80%,
    #217A4B 100%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 1.5s ease 0.3s;
}

.hero--animated .hero__gradient {
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 952px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 40px;
}

.hero__tags {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 36px;
  padding: 10px;
  border-radius: 164px;
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  white-space: nowrap;
}

.hero__tag span {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #FFFFFF;
}

.hero__title {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 106px;
  line-height: 90px;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  display: block;
}

.hero__title-line1,
.hero__title-line2,
.hero__title-line3 {
  display: inline;
}

.hero__title-line1::after {
  content: '\A';
  white-space: pre;
}

.hero__title-line2::before {
  content: ' ';
}

.hero__title-line3::before {
  content: ' ';
}

.hero__subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  max-width: 700px;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 302px;
}

.hero__dates {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #FFFFFF;
  white-space: nowrap;
}

.hero__date-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF880D;
  flex-shrink: 0;
}

.hero__button {
  width: 302px;
  height: 60px;
  border: none;
  border-radius: 10px;
  background: #EF880D;
  padding: 20px 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
}

.hero__button:hover {
  background: #EF7E0D;
}

.hero__anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero--animated .hero__anim--1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero--animated .hero__anim--2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.hero--animated .hero__anim--3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.hero__anim--4 {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero--animated .hero__anim--4 {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.6s;
}

.hero--animated .hero__anim--5 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.hero--animated .hero__anim--6 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

@media (max-width: 1440px) {
  .hero__content {
    width: 90%;
    max-width: 850px;
    gap: 20px;
    padding-top: 30px;
  }
  .hero__title {
    font-size: 86px;
    line-height: 76px;
  }
  .hero__subtitle {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .hero__content {
    width: 90%;
    max-width: 750px;
    gap: 18px;
    padding-top: 20px;
  }
  .hero__title {
    font-size: 72px;
    line-height: 66px;
  }
  .hero__subtitle {
    font-size: 18px;
  }
  .hero__button {
    width: 280px;
    height: 56px;
    font-size: 16px;
    padding: 18px 24px;
  }
  .hero__cta {
    width: 280px;
  }
  .hero__date {
    font-size: 14px;
  }
  .hero__dates {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: var(--app-height, 100vh);
    height: var(--app-height, 100vh);
  }
  .hero__content {
    width: calc(100% - 48px);
    max-width: 600px;
    gap: 16px;
    padding-top: 20px;
  }
  .hero__title {
    font-size: 56px;
    line-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__title-line1 {
    display: block;
    white-space: nowrap;
  }
  .hero__title-line1::after {
    content: none;
  }
  .hero__title-line2 {
    display: block;
  }
  .hero__title-line2::before {
    content: none;
  }
  .hero__title-line3 {
    display: block;
  }
  .hero__title-line3::before {
    content: none;
  }
  .hero__subtitle {
    font-size: 17px;
  }
  .hero__tag {
    height: 34px;
    padding: 8px 12px;
  }
  .hero__tag span {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: var(--app-height, 100vh);
    height: var(--app-height, 100vh);
  }
  .hero__content {
    width: calc(100% - 32px);
    max-width: 100%;
    gap: 14px;
    padding-top: 20px;
  }
  .hero__tags {
    gap: 8px;
    justify-content: center;
  }
  .hero__tag {
    height: 32px;
    padding: 8px 12px;
  }
  .hero__tag span {
    font-size: 12px;
  }
  .hero__title {
    font-size: 48px;
    line-height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__title-line1 {
    display: block;
    white-space: nowrap;
  }
  .hero__title-line1::after {
    content: none;
  }
  .hero__title-line2 {
    display: block;
  }
  .hero__title-line2::before {
    content: none;
  }
  .hero__title-line3 {
    display: block;
  }
  .hero__title-line3::before {
    content: none;
  }
  .hero__subtitle {
    font-size: 16px;
    line-height: 140%;
  }
  .hero__dates {
    display: none;
  }
  .hero__cta {
    width: 100%;
  }
  .hero__button {
    width: 100%;
    height: 56px;
    border-radius: 10px;
    font-size: 18px;
    padding: 18px 24px;
  }
}

.how {
  position: relative;
  width: 100%;
  background: #217A4B;
  overflow: hidden;
  padding: 80px 0 100px;
}

.how__forest-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.how__forest-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.how--visible .how__forest-bg img {
  transform: scale(1);
}

.how__content {
  position: relative;
  z-index: 10;
  max-width: 1310px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 0 70px;
}

.how__title {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 86px;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how__title-line {
  display: block;
}

.how__cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.how__card {
  flex: 1;
  max-width: 410px;
  height: 490px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.how__card--1 {
  background: #1A9342;
  padding: 30px 0 0 0;
  gap: 14px;
}
.how__card--1 .how__card-top {
  padding: 0 20px;
}

.how__card--2 {
  background: #1A623C;
  padding: 30px 0 0 0;
  justify-content: space-between;
}
.how__card--2 .how__card-top {
  padding: 0 20px;
}

.how__card--3 {
  background: #EF880D;
  padding: 30px 0 0 0;
  gap: 10px;
}
.how__card--3 .how__card-top {
  padding: 0 20px;
}

.how__card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.how__card-number {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 68px;
  text-align: center;
  color: #FFFFFF;
}

.how__card-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
}

.how__card-dates {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.how__card-date {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 35px;
  padding: 6px 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #FFFFFF;
  white-space: nowrap;
}

.how__card-date-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4EFF89;
  flex-shrink: 0;
}

.how__card-image {
  flex: 1;
  display: flex;
  overflow: visible;
  position: relative;
  min-height: 0;
}

.how__card-image img {
  display: block;
}

.how__card--1 .how__card-image {
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  margin: 0;
  padding: 0;
}
.how__card--1 .how__card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateY(7%);
}

.how__card--2 .how__card-image {
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.how__card--2 .how__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how__card--3 .how__card-image {
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.how__card--3 .how__card-image img {
  width: 115%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translateY(5%);
}

.how__anim {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.how--visible .how__anim--1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.how__anim--2 {
  opacity: 0;
  transform: translateX(-60px) translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.how--visible .how__anim--2 {
  opacity: 1;
  transform: translateX(0) translateY(0);
  transition-delay: 0.3s;
}

.how__anim--3 {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.how--visible .how__anim--3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.how__anim--4 {
  opacity: 0;
  transform: translateX(60px) translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.how--visible .how__anim--4 {
  opacity: 1;
  transform: translateX(0) translateY(0);
  transition-delay: 0.7s;
}

@media (max-width: 1440px) {
  .how__content {
    max-width: 1100px;
    padding: 0 40px;
    gap: 40px;
  }
  .how__title {
    font-size: 80px;
    line-height: 74px;
  }
  .how__cards {
    gap: 16px;
  }
  .how__card {
    height: 450px;
  }
  .how__card-number {
    font-size: 60px;
    line-height: 56px;
  }
  .how__card-text {
    font-size: 16px;
  }
  .how__card-date {
    font-size: 13px;
    height: 32px;
    padding: 5px 7px;
  }
}

@media (max-width: 1200px) {
  .how {
    padding: 60px 0 80px;
  }
  .how__content {
    max-width: 100%;
    padding: 0 30px;
    gap: 36px;
  }
  .how__title {
    font-size: 68px;
    line-height: 62px;
  }
  .how__cards {
    gap: 12px;
  }
  .how__card {
    height: 420px;
  }
  .how__card--1 {
    padding: 24px 12px 0 0px;
  }
  .how__card--2 {
    padding: 24px 0 0 0;
  }
  .how__card--2 .how__card-top {
    padding: 0 16px;
  }
  .how__card--3 {
    padding: 24px 0 0 0;
  }
  .how__card--3 .how__card-top {
    padding: 0 16px;
  }
  .how__card-number {
    font-size: 52px;
    line-height: 48px;
  }
  .how__card-text {
    font-size: 15px;
  }
  .how__card-text br {
    display: none;
  }
}

@media (max-width: 990px) {
  .how__content {
    padding: 0 24px;
    gap: 30px;
  }
  .how__title {
    font-size: 58px;
    line-height: 54px;
  }
  .how__cards {
    gap: 10px;
  }
  .how__card {
    height: 400px;
  }
  .how__card-number {
    font-size: 46px;
    line-height: 42px;
  }
  .how__card-text {
    font-size: 14px;
  }
  .how__card-date {
    font-size: 11px;
    height: 28px;
    padding: 4px 6px;
  }
  .how__card-date-dot {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 768px) {
  .how {
    padding: 50px 0 60px;
  }
  .how__content {
    padding: 0 24px;
    gap: 30px;
  }
  .how__title {
    font-size: 52px;
    line-height: 48px;
  }
  .how__cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .how__card {
    width: 100%;
    max-width: 420px;
    height: 420px;
    flex: none;
  }
  .how__card--1 {
    padding: 24px 18px 0 0px;
  }
  .how__card--2 {
    padding: 24px 0 0 0;
  }
  .how__card--2 .how__card-top {
    padding: 0 18px;
  }
  .how__card--3 {
    padding: 24px 0 0 0;
  }
  .how__card--3 .how__card-top {
    padding: 0 18px;
  }
  .how__card-number {
    font-size: 56px;
    line-height: 52px;
  }
  .how__card-text {
    font-size: 16px;
  }
  .how__card-text br {
    display: none;
  }
}

@media (max-width: 576px) {
  .how {
    padding: 40px 0 50px;
  }
  .how__content {
    padding: 0 16px;
    gap: 24px;
  }
  .how__title {
    font-size: 40px;
    line-height: 38px;
  }
  .how__cards {
    gap: 12px;
  }
  .how__card {
    max-width: 100%;
    height: 380px;
  }
  .how__card--1 {
    padding: 20px 14px 0 0px;
    gap: 12px;
  }
  .how__card--1 .how__card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateY(18%);
  }
  .how__card--2 {
    padding: 20px 0 0 0;
  }
  .how__card--2 .how__card-top {
    padding: 0 14px;
  }
  .how__card--3 {
    padding: 20px 0 0 0;
    gap: 8px;
  }
  .how__card--3 .how__card-top {
    padding: 0 14px;
  }
  .how__card-number {
    font-size: 48px;
    line-height: 44px;
  }
  .how__card-text {
    font-size: 15px;
  }
  .how__card-date {
    font-size: 12px;
    height: 30px;
    padding: 4px 6px;
  }
  .how__card-date-dot {
    width: 6px;
    height: 6px;
  }
}

.benefits {
  position: relative;
  width: 100%;
  background: #135130;
  overflow: hidden;
  padding: 80px 0 100px;
}

.benefits__content {
  position: relative;
  z-index: 10;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 0 70px;
}

.benefits__title {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 86px;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits__title-line {
  display: block;
}

.benefits__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.benefits__card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #E6FFE9;
  display: flex;
  flex-direction: column;
}

.benefits__card-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 40px 30px 40px;
  max-width: 966px;
  margin: 0 auto;
}

.benefits__card-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #09321C;
}

.benefits__card-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  color: #09321C;
  opacity: 0.8;
}

.benefits__card-image {
  width: 100%;
  overflow: hidden;
}

.benefits__card-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.benefits__button {
  width: 100%;
  height: 70px;
  border: none;
  border-radius: 10px;
  padding: 20px 30px;
  background: #EF880D;
  color: #FFFFFF;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.benefits__button:hover {
  background: #EF7E0D;
}

.benefits__anim-title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.benefits__anim-title.benefits__anim--visible {
  opacity: 1;
  transform: translateY(0);
}

.benefits__anim-card {
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.benefits__anim-card.benefits__anim--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1440px) {
  .benefits__content {
    padding: 0 40px;
    gap: 40px;
  }
  .benefits__title {
    font-size: 80px;
    line-height: 74px;
  }
  .benefits__card-title {
    font-size: 28px;
  }
  .benefits__card-text {
    font-size: 20px;
  }
  .benefits__card-text-block {
    padding: 36px 36px 26px 36px;
    max-width: 860px;
  }
}

@media (max-width: 1200px) {
  .benefits {
    padding: 60px 0 80px;
  }
  .benefits__content {
    padding: 0 30px;
    gap: 36px;
  }
  .benefits__title {
    font-size: 68px;
    line-height: 62px;
  }
  .benefits__card-title {
    font-size: 24px;
  }
  .benefits__card-text {
    font-size: 18px;
  }
  .benefits__card-text-block {
    padding: 30px 30px 22px 30px;
    max-width: 750px;
  }
  .benefits__cards {
    gap: 16px;
  }
  .benefits__button { height: 64px; font-size: 20px; }
}

@media (max-width: 990px) {
  .benefits__content {
    padding: 0 24px;
    gap: 30px;
  }
  .benefits__title {
    font-size: 58px;
    line-height: 54px;
  }
  .benefits__card-title {
    font-size: 22px;
  }
  .benefits__card-text {
    font-size: 16px;
  }
  .benefits__card-text-block {
    padding: 26px 24px 20px 24px;
    max-width: 650px;
    gap: 14px;
  }
  .benefits__cards {
    gap: 14px;
  }
  .benefits__button { height: 60px; font-size: 18px; }
}

@media (max-width: 768px) {
  .benefits {
    padding: 50px 0 60px;
  }
  .benefits__content {
    padding: 0 24px;
    gap: 30px;
  }
  .benefits__title {
    font-size: 48px;
    line-height: 44px;
  }
  .benefits__card-text-block {
    align-items: flex-start;
    padding: 24px 20px 18px 20px;
    max-width: 100%;
    gap: 12px;
  }
  .benefits__card-title {
    font-size: 20px;
    text-align: left;
  }
  .benefits__card-text {
    font-size: 15px;
    text-align: left;
  }
  .benefits__cards {
    gap: 12px;
  }
  .benefits__button { height: 56px; font-size: 17px; padding: 16px 20px; }
}

@media (max-width: 576px) {
  .benefits {
    padding: 40px 0 50px;
  }
  .benefits__content {
    padding: 0 16px;
    gap: 24px;
  }
  .benefits__title {
    font-size: 38px;
    line-height: 36px;
  }
  .benefits__card-text-block {
    align-items: flex-start;
    padding: 20px 16px 14px 16px;
    gap: 10px;
  }
  .benefits__card-title {
    font-size: 18px;
    text-align: left;
  }
  .benefits__card-text {
    font-size: 14px;
    text-align: left;
    line-height: 140%;
  }
  .benefits__cards {
    gap: 10px;
  }
}

.for-whom {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 100px;
}

.for-whom__button {
  width: 100%;
  height: 70px;
  border: none;
  border-radius: 10px;
  padding: 20px 30px;
  background: #EF880D;
  color: #FFFFFF;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  text-align: center;
  cursor: pointer;
  margin-top: 50px;
  display: block;
}

.for-whom__button:hover {
  background: #EF7E0D;
}

.for-whom__button:hover {
  background: #EF7E0D;
}

.for-whom__gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(
    to bottom,
    #135130 0%,
    rgba(19, 81, 48, 0.85) 30%,
    rgba(19, 81, 48, 0.4) 60%,
    rgba(19, 81, 48, 0) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.for-whom__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.for-whom__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.for-whom__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.for-whom__content {
  position: relative;
  z-index: 10;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 70px 0 70px;
}

.for-whom__title {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 106px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.for-whom__title-line {
  display: block;
}

.for-whom__card {
  width: 400px;
  border-radius: 10px;
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(110px);
  -webkit-backdrop-filter: blur(110px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.for-whom__card-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.for-whom__card-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #FFFFFF;
}

.for-whom__card-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #FFFFFF;
  opacity: 0.8;
}

.for-whom__cards-desktop {
  position: relative;
  width: 100%;
  height: 880px;
}

.for-whom__cards-desktop .for-whom__card {
  position: absolute;
}

.for-whom__card--1 { left: 1%; top: 80px; }
.for-whom__card--3 { left: 4%; top: 490px; }
.for-whom__card--2 { left: 38%; top: 200px; }
.for-whom__card--4 { right: -3%; top: 0px; }
.for-whom__card--5 { right: -1%; top: 430px; }

.for-whom__cards-mobile {
  display: none;
}

.for-whom__anim-title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.for-whom--visible .for-whom__anim-title {
  opacity: 1;
  transform: translateY(0);
}

.for-whom__anim-card {
  opacity: 0;
  transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.for-whom__anim-card--1 {
  transform: translate(calc(50vw - 250px - 1%), calc(50vh - 500px - 80px)) scale(0.8);
}
.for-whom--visible .for-whom__anim-card--1 {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition-delay: 0.3s;
}

.for-whom__anim-card--2 {
  transform: translate(calc(50vw - 450px - 38%), calc(50vh - 500px - 200px)) scale(0.8);
}
.for-whom--visible .for-whom__anim-card--2 {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition-delay: 0.5s;
}

.for-whom__anim-card--3 {
  transform: translate(calc(50vw - 250px - 4%), calc(50vh - 500px - 490px)) scale(0.8);
}
.for-whom--visible .for-whom__anim-card--3 {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition-delay: 0.7s;
}

.for-whom__anim-card--4 {
  transform: translate(calc(-50vw + 250px + 3%), calc(50vh - 500px)) scale(0.8);
}
.for-whom--visible .for-whom__anim-card--4 {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition-delay: 0.4s;
}

.for-whom__anim-card--5 {
  transform: translate(calc(-50vw + 250px + 1%), calc(50vh - 500px - 430px)) scale(0.8);
}
.for-whom--visible .for-whom__anim-card--5 {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition-delay: 0.6s;
}

.for-whom__anim-mobile {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.for-whom__anim-mobile--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1440px) {
  .for-whom__content { padding: 70px 40px 0 40px; }
  .for-whom__title { font-size: 86px; margin-bottom: 40px; }
  .for-whom__card { width: 340px; padding: 22px 18px; gap: 18px; }
  .for-whom__card-title { font-size: 18px; }
  .for-whom__card-text { font-size: 16px; }
  .for-whom__cards-desktop { height: 800px; }
  .for-whom__card--1 { left: 2%; top: 70px; }
  .for-whom__card--3 { left: 5%; top: 450px; }
  .for-whom__card--2 { left: 38%; top: 180px; }
  .for-whom__card--4 { right: -2%; top: 0px; }
  .for-whom__card--5 { right: -1%; top: 390px; }
}

@media (max-width: 1200px) {
  .for-whom { padding-bottom: 80px; }
  .for-whom__button { margin-top: 40px; height: 64px; font-size: 20px; }
  .for-whom__content { padding: 60px 30px 0 30px; }
  .for-whom__title { font-size: 68px; margin-bottom: 36px; }
  .for-whom__card { width: 280px; padding: 20px 16px; gap: 16px; }
  .for-whom__card-title { font-size: 16px; }
  .for-whom__card-text { font-size: 14px; }
  .for-whom__card-icon { width: 38px; height: 38px; }
  .for-whom__cards-desktop { height: 720px; }
  .for-whom__card--1 { left: 1%; top: 60px; }
  .for-whom__card--3 { left: 6%; top: 400px; }
  .for-whom__card--2 { left: 38%; top: 150px; }
  .for-whom__card--4 { right: -1%; top: 0px; }
  .for-whom__card--5 { right: 1%; top: 340px; }
}

@media (max-width: 990px) {
  .for-whom__button { margin-top: 36px; height: 60px; font-size: 18px; }
  .for-whom__content { padding: 50px 24px 0 24px; }
  .for-whom__title { font-size: 56px; margin-bottom: 30px; }
  .for-whom__card { width: 240px; padding: 18px 14px; gap: 14px; }
  .for-whom__card-title { font-size: 15px; }
  .for-whom__card-text { font-size: 13px; }
  .for-whom__card-icon { width: 34px; height: 34px; }
  .for-whom__cards-desktop { height: 660px; }
  .for-whom__card--1 { left: 0%; top: 50px; }
  .for-whom__card--3 { left: 2%; top: 370px; }
  .for-whom__card--2 { left: 35%; top: 130px; }
  .for-whom__card--4 { right: -2%; top: 0px; }
  .for-whom__card--5 { right: -2%; top: 310px; }
  .for-whom__gradient-top { height: 200px; }
}

@media (max-width: 768px) {
  .for-whom { padding: 0 0 60px; }
  .for-whom__button { margin-top: 28px; height: 56px; font-size: 17px; padding: 16px 20px; }
  .for-whom__content { padding: 50px 24px 0 24px; }
  .for-whom__title { font-size: 48px; margin-bottom: 24px; }
  .for-whom__gradient-top { height: 180px; }
  .for-whom__cards-desktop { display: none; }
  .for-whom__cards-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }
  .for-whom__cards-mobile .for-whom__card {
    width: 100%;
    max-width: 420px;
    position: static;
    padding: 22px 18px;
    gap: 18px;
  }
  .for-whom__card-title { font-size: 18px; }
  .for-whom__card-text { font-size: 16px; }
  .for-whom__card-icon { width: 40px; height: 40px; }
}

@media (max-width: 576px) {
  .for-whom { padding: 0 0 50px; }
  .for-whom__button { margin-top: 24px; }
  .for-whom__content { padding: 40px 16px 0 16px; }
  .for-whom__title { font-size: 38px; margin-bottom: 20px; }
  .for-whom__gradient-top { height: 150px; }
  .for-whom__cards-mobile { gap: 12px; }
  .for-whom__cards-mobile .for-whom__card {
    max-width: 100%;
    padding: 20px 16px;
    gap: 16px;
  }
  .for-whom__card-title { font-size: 17px; }
  .for-whom__card-text { font-size: 15px; line-height: 130%; }
  .for-whom__card-icon { width: 36px; height: 36px; }
}

/* ============ FAMILIES SLIDER ============ */
.families {
  position: relative;
  width: 100%;
  background: #207A4B;
  padding: 100px 0 110px;
  overflow: hidden;
}

.families__content {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 140px;
}

.families__title {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 106px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #E6FFE9;
  margin: 0 0 60px;
}

.families__slider {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.families__track-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1400 / 740;
  overflow: hidden;
}

.families__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.families__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.families__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.families__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid #FFFFFF;
  background: rgba(248, 246, 240, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  z-index: 3;
  transition: background 0.25s ease, transform 0.25s ease;
}

.families__arrow:hover {
  background: rgba(248, 246, 240, 0.4);
}

.families__arrow:active {
  transform: translateY(-50%) scale(0.94);
}

.families__arrow--prev {
  left: -85px;
}

.families__arrow--next {
  right: -85px;
}

.families__arrow svg {
  display: block;
}

.families__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.families__dot {
  width: 60px;
  height: 6px;
  border: none;
  padding: 0;
  background: #FFFFFF;
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.families__dot--active {
  opacity: 1;
  transform: scaleX(1.05);
}

/* Animations (mirror about__anim style) */
.families__anim {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.families__anim--fade-up {
  transform: translateY(50px);
}
.families__anim--delay-1 { transition-delay: 0.15s; }
.families__anim--delay-2 { transition-delay: 0.3s; }
.families__anim.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1700px) {
  .families__content { padding: 0 110px; }
  .families__arrow--prev { left: -70px; }
  .families__arrow--next { right: -70px; }
}

@media (max-width: 1440px) {
  .families { padding: 90px 0 100px; }
  .families__content { padding: 0 90px; }
  .families__title { font-size: 86px; margin-bottom: 50px; }
  .families__slider { max-width: 1200px; }
  .families__arrow--prev { left: -64px; }
  .families__arrow--next { right: -64px; }
}

@media (max-width: 1280px) {
  .families__content { padding: 0 30px; }
  .families__arrow--prev { left: 16px; }
  .families__arrow--next { right: 16px; }
}

@media (max-width: 1200px) {
  .families { padding: 80px 0 90px; }
  .families__title { font-size: 68px; margin-bottom: 44px; }
  .families__dot { width: 50px; height: 5px; }
}

@media (max-width: 990px) {
  .families { padding: 70px 0 80px; }
  .families__content { padding: 0 24px; }
  .families__title { font-size: 56px; margin-bottom: 36px; }
  .families__arrow { display: none; }
  .families__dots { margin-top: 28px; gap: 12px; }
  .families__dot { width: 44px; height: 5px; }
}

@media (max-width: 768px) {
  .families { padding: 60px 0 70px; }
  .families__content { padding: 0 24px; }
  .families__title { font-size: 48px; margin-bottom: 28px; }
  .families__dots { margin-top: 24px; gap: 10px; }
  .families__dot { width: 36px; height: 4px; }
}

@media (max-width: 576px) {
  .families { padding: 50px 0 60px; }
  .families__content { padding: 0 16px; }
  .families__title { font-size: 38px; margin-bottom: 22px; }
  .families__dots { margin-top: 20px; gap: 8px; }
  .families__dot { width: 28px; height: 4px; }
}

.about {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 80px 0 80px;
}

.about__top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 68%;
  z-index: 1;
  pointer-events: none;
  background: #217A4B;
}
.about__top-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  transform-origin: center bottom;
}

.about__forest-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32%;
  background: #135130;
  z-index: 1;
  pointer-events: none;
}
.about__forest-bg img {
  display: none;
}

.about__content {
  position: relative;
  z-index: 10;
  max-width: 1780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 70px;
}

.about__title {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 86px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #E6FFE9;
}

.about__card {
  display: flex;
  width: 100%;
  max-width: 1200px;
  border-radius: 10px;
  overflow: hidden;
}

.about__card-photo {
  width: 45%;
  flex-shrink: 0;
  background: #D8EDE4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.about__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__card-info {
  width: 55%;
  padding: 24px 22px 0px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  background: #0E3D24;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.about__card-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 124%;
  letter-spacing: 0%;
  color: #FFFFFF;
}

.about__card-highlight {
  padding: 10px;
  border-left: 5px solid #07B240;
  background: rgba(7, 178, 64, 0.2);
  border-radius: 0 4px 4px 0;
}
.about__card-highlight p {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 124%;
  letter-spacing: 0%;
  color: #FFFFFF;
}

.about__card-signature {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 20px;
  gap: 16px;
}

.about__card-signature-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 1;
  min-width: 0;
}

.about__card-name {
  font-family: 'Segoe Script', cursive;
  font-weight: 400;
  font-size: 22px;
  line-height: 124%;
  color: #FFFFFF;
}

.about__card-role {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #FFFFFF;
  opacity: 0.8;
}

.about__card-quote {
  width: 180px;
  height: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes aboutQuoteFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
.about__card-quote {
  animation: aboutQuoteFloat 4s ease-in-out infinite;
}

.about__stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

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

.about__stat-number {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 100%;
  text-align: center;
  color: #E6FFE9;
  font-variant-numeric: tabular-nums;
}

.about__stat-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #E6FFE9;
}

.about__divider {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 0;
  border: none;
  border-top: 1px dashed #FFFFFF;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.about__divider.is-visible {
  transform: scaleX(1);
}

.about__bottom-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  gap: 0;
}

.about__bottom-brand-col {
  width: 45%;
  flex-shrink: 0;
}

.about__bottom-brand {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 4%;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;
}

.about__bottom-right {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about__bottom-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #FFFFFF;
  width: 100%;
}

.about__button {
  width: 219px;
  height: 58px;
  border-radius: 10px;
  padding: 20px 30px;
  border: 1px solid #FFFFFF;
  background: transparent;
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
}
.about__button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about__anim {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease;
}
.about__anim--fade-up {
  transform: translateY(50px);
}
.about__anim--delay-1 { transition-delay: 0.15s; }
.about__anim--delay-2 { transition-delay: 0.3s; }
.about__anim--delay-3 { transition-delay: 0.45s; }
.about__anim.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1440px) {
  .about__content { padding: 0 40px; gap: 36px; }
  .about__title { font-size: 72px; }
  .about__card { max-width: 1060px; }
  .about__card-text { font-size: 19px; }
  .about__card-highlight p { font-size: 19px; }
  .about__card-info { padding: 30px 24px; gap: 18px; }
  .about__stat-number { font-size: 50px; }
  .about__stat-label { font-size: 16px; }
  .about__card-quote { width: 150px; height: 150px; }
  .about__stats { max-width: 1060px; }
  .about__bottom-wrapper { max-width: 1060px; }
}

@media (max-width: 1200px) {
  .about { padding: 60px 0 60px; }
  .about__content { padding: 0 30px; gap: 30px; }
  .about__title { font-size: 60px; }
  .about__card { max-width: 900px; }
  .about__card-text { font-size: 17px; }
  .about__card-highlight p { font-size: 17px; }
  .about__card-info { padding: 26px 20px; gap: 16px; }
  .about__card-name { font-size: 20px; }
  .about__card-role { font-size: 14px; }
  .about__stat-number { font-size: 42px; }
  .about__stat-label { font-size: 15px; }
  .about__bottom-text { font-size: 16px; }
  .about__card-quote { width: 120px; height: 120px; }
  .about__stats { max-width: 900px; }
  .about__bottom-wrapper { max-width: 900px; }
}

@media (max-width: 990px) {
  .about__content { padding: 0 24px; gap: 26px; }
  .about__title { font-size: 50px; }
  .about__card { max-width: 100%; }
  .about__card-text { font-size: 15px; }
  .about__card-highlight p { font-size: 15px; }
  .about__card-info { padding: 22px 18px; gap: 14px; }
  .about__card-name { font-size: 18px; }
  .about__card-role { font-size: 13px; }
  .about__stat-number { font-size: 36px; }
  .about__stat-label { font-size: 14px; }
  .about__bottom-text { font-size: 15px; }
  .about__card-quote { width: 110px; height: 110px; }
  .about__stats { max-width: 100%; }
  .about__bottom-wrapper { max-width: 100%; }
}

@media (max-width: 768px) {
  .about { padding: 50px 0 50px; }
  .about__top-bg { height: 55%; }
  .about__forest-bg { height: 55%; }
  .about__content { padding: 0 24px; gap: 24px; }
  .about__title { font-size: 44px; }
  .about__card { flex-direction: column; }
  .about__card-photo { width: 100%; aspect-ratio: 4 / 5; height: auto; }
  .about__card-photo img { object-position: center top; }
  .about__card-info {
    width: 100%;
    padding: 24px 20px;
    gap: 18px;
    border-radius: 0 0 10px 10px;
    border-top-right-radius: 0;
  }
  .about__card-text { font-size: 17px; }
  .about__card-highlight p { font-size: 17px; }
  .about__card-quote { width: 100px; height: 100px; }
  .about__stats { max-width: 100%; gap: 20px; }
  .about__stat-number { font-size: 32px; }
  .about__stat-label { font-size: 14px; }
  .about__bottom-wrapper { flex-direction: column; gap: 16px; max-width: 100%; }
  .about__bottom-brand-col { display: none; }
  .about__bottom-right { width: 100%; align-items: center; }
  .about__bottom-text { font-size: 15px; max-width: 100%; }
  .about__button { align-self: center; }
  .about__anim--fade-up { transform: translateY(30px); }
}

@media (max-width: 576px) {
  .about { padding: 40px 0 40px; }
  .about__content { padding: 0 16px; gap: 20px; }
  .about__title { font-size: 36px; }
  .about__card-photo { aspect-ratio: 3 / 4; }
  .about__card-info { padding: 20px 16px; gap: 16px; }
  .about__card-text { font-size: 16px; }
  .about__card-highlight p { font-size: 16px; }
  .about__card-name { font-size: 18px; }
  .about__card-role { font-size: 13px; }
  .about__card-quote { width: 90px; height: 90px; }
  .about__stats { gap: 16px; }
  .about__stat-number { font-size: 28px; }
  .about__stat-label { font-size: 13px; }
  .about__bottom-text { font-size: 14px; line-height: 130%; }
  .about__button { width: 100%; height: 56px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .about__anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
  .about__divider {
    transform: scaleX(1) !important;
    transition: none !important;
  }
  .about__card-quote {
    animation: none !important;
  }
}

.footer-section {
  position: relative;
  width: 100%;
  background: #135130;
  padding: 40px 0 0;
}

.footer-section__content {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-section__card {
  margin: 0 70px;
  border-radius: 10px;
  background: #217A4B;
  position: relative;
  overflow: hidden;
  padding: 50px 0 60px;
}

.footer-section__card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section__footprints {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.footer-section__footprints img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-section__title {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 76px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #E6FFE9;
}

.footer-section__subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
  max-width: 480px;
}

.footer-section__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 459px;
}

.footer-section__input-group {
  width: 100%;
}

.footer-section__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 0;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.3s ease;
}
.footer-section__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer-section__input:focus {
  border-bottom-color: #FFFFFF;
}
.footer-section__input.is-invalid {
  border-bottom-color: #FF6B6B;
}
.footer-section__input.is-invalid::placeholder {
  color: rgba(255, 107, 107, 0.6);
}
.footer-section__checkbox.is-invalid input[type="checkbox"] {
  border-color: #FF6B6B;
  box-shadow: 0 0 0 1px #FF6B6B;
}

.footer-section__dates-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section__dates-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.6);
}

.footer-section__dates {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-section__date {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 35px;
  padding: 6px 8px;
  border-radius: 30px;
  border: 1px solid rgba(18, 94, 54, 0.44);
  background: #18683E;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #FFFFFF;
  white-space: nowrap;
}
.footer-section__date--active {
  background: #EF880D;
  border-color: #EF880D;
}
.footer-section__date-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-section__submit {
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 10px;
  background: #EF880D;
  padding: 24px 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
}
.footer-section__submit:hover {
  background: #EF7E0D;
}

.footer-section__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: 100%;
  justify-content: flex-start;
}
.footer-section__checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  position: relative;
}
.footer-section__checkbox input[type="checkbox"]:checked {
  background: #EF880D;
  border: 1px solid #EF880D;
}
.footer-section__checkbox input[type="checkbox"]:checked::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 1;
}
.footer-section__checkbox span {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #FFFFFF;
}
.footer-section__checkbox-link {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer {
  padding: 40px 70px 30px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col--left { max-width: 280px; }

.footer__logo img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.footer__address {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #FFFFFF;
  opacity: 0.7;
}

.footer__col--center {
  gap: 16px;
  margin-left: auto;
}

.footer__phone {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 100%;
  color: #E6FFE9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__phone:hover { color: #8FE498; }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__nav a:hover {
  color: #E6FFE9;
  text-decoration: underline;
}

.footer__col--right {
  align-items: flex-end;
  gap: 16px;
}

.footer__email {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 100%;
  text-align: right;
  color: #E6FFE9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__email:hover { color: #8FE498; }

.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  text-decoration: none;
  opacity: 0.75;
}
.footer__social:hover { opacity: 1; }
.footer__social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.footer__copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #FFFFFF;
}

.footer__privacy {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer__privacy:hover { opacity: 0.7; }

@media (max-width: 1440px) {
  .footer-section__card { margin: 0 40px; padding: 40px 0 50px; }
  .footer-section__title { font-size: 62px; }
  .footer { padding: 36px 40px 26px; }
  .footer__phone { font-size: 38px; }
  .footer__email { font-size: 38px; }
}

@media (max-width: 1200px) {
  .footer-section__card { margin: 0 30px; padding: 36px 0 44px; }
  .footer-section__title { font-size: 52px; }
  .footer-section__subtitle { font-size: 16px; }
  .footer { padding: 30px 30px 24px; }
  .footer__phone { font-size: 30px; }
  .footer__email { font-size: 30px; }
  .footer__logo img { width: 170px; }
}

@media (max-width: 990px) {
  .footer-section__card { margin: 0 24px; padding: 30px 0 40px; }
  .footer-section__title { font-size: 44px; }
  .footer__top { flex-wrap: wrap; gap: 30px; }
  .footer__phone { font-size: 26px; }
  .footer__email { font-size: 26px; }
  .footer__col--center { margin-left: 0; }
  .footer { padding: 30px 24px 20px; }
}

@media (max-width: 768px) {
  .footer-section { padding: 30px 0 0; }
  .footer-section__card { margin: 0 24px; padding: 30px 0 40px; }
  .footer-section__title { font-size: 38px; }
  .footer-section__subtitle { font-size: 15px; }
  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer__col--left { align-items: center; max-width: 100%; }
  .footer__col--center { margin-left: 0; align-items: center; }
  .footer__nav { align-items: center; }
  .footer__email { font-size: 24px; text-align: center; }
  .footer__phone { font-size: 24px; text-align: center; }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }
  .footer__col--right { align-items: center; }
  .footer { padding: 30px 24px 20px; }
}

@media (max-width: 576px) {
  .footer-section { padding: 20px 0 0; }
  .footer-section__card { margin: 0 16px; padding: 24px 0 36px; }
  .footer-section__card-inner { gap: 16px; padding: 0 16px; }
  .footer-section__title { font-size: 32px; }
  .footer-section__subtitle { font-size: 14px; }
  .footer-section__form { gap: 16px; max-width: 100%; }
  .footer-section__submit { height: 56px; font-size: 16px; padding: 18px 24px; }
  .footer__email { font-size: 20px; }
  .footer__phone { font-size: 20px; }
  .footer { padding: 24px 16px 16px; }
  .footer__logo img { width: 260px; }
  .footer__address { font-size: 13px; }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  width: 100%;
  max-width: 750px;
  background: #217A4B;
  border-radius: 10px;
  padding: 50px 60px 50px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid rgba(200, 200, 200, 0.35);
  background: rgba(148, 148, 148, 0.32);
  backdrop-filter: blur(54px);
  -webkit-backdrop-filter: blur(54px);
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.modal__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.modal__title {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  max-width: 500px;
}

.modal__subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  opacity: 0.8;
  max-width: 460px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 378px;
}

.modal__methods-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal__methods-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #FFFFFF;
}

.modal__methods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.modal__method {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 14px 20px 14px 10px;
  border-radius: 40px;
  border: 1px solid #125E36;
  background: #19693F;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  white-space: nowrap;
}
.modal__method--active {
  background: #EF880D;
  border-color: #EF880D;
}
.modal__method-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.modal__phone-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal__phone-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #FFFFFF;
}

.modal__phone-input {
  width: 100%;
  height: 50px;
  padding: 14px 20px;
  border-radius: 6px;
  border: 1px solid #125E36;
  background: #19693F;
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.3s ease;
}
.modal__phone-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.modal__phone-input:focus {
  border-color: #FFFFFF;
}
.modal__phone-input.is-invalid {
  border-color: #FF6B6B;
}
.modal__phone-input.is-invalid::placeholder {
  color: rgba(255, 107, 107, 0.6);
}
.modal__checkbox.is-invalid input[type="checkbox"] {
  border-color: #FF6B6B;
  box-shadow: 0 0 0 1px #FF6B6B;
}

.modal__submit {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 10px;
  background: #EF880D;
  padding: 20px 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
}
.modal__submit:hover { background: #EF7E0D; }

.modal__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: 100%;
  justify-content: flex-start;
}
.modal__checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  position: relative;
}
.modal__checkbox input[type="checkbox"]:checked {
  background: #EF880D;
  border: 1px solid #EF880D;
}
.modal__checkbox input[type="checkbox"]:checked::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 1;
}
.modal__checkbox span {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #FFFFFF;
}
.modal__checkbox-link {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 300px;
}

.modal__success-title {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 110%;
  text-align: center;
  color: #FFFFFF;
}

.modal__success-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  opacity: 0.8;
}

.modal__success-btn {
  width: 100%;
  max-width: 378px;
  height: 60px;
  border: none;
  border-radius: 10px;
  background: #EF880D;
  padding: 20px 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
}
.modal__success-btn:hover { background: #EF7E0D; }

@media (max-width: 768px) {
  .modal {
    max-width: 100%;
    border-radius: 0;
    padding: 40px 24px 40px;
    max-height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .modal__title { font-size: 32px; }
  .modal__form { max-width: 100%; }
  .modal__success-btn { max-width: 100%; }
}

@media (max-width: 576px) {
  .modal { padding: 30px 16px 30px; }
  .modal__title { font-size: 28px; }
  .modal__close { top: 16px; right: 16px; }
  .modal__method { font-size: 16px; padding: 12px 16px 12px 8px; height: 38px; }
  .modal__phone-input { font-size: 18px; height: 48px; }
  .modal__submit { height: 56px; font-size: 16px; }
  .modal__success-btn { height: 56px; font-size: 16px; }
}

.privacy {
  min-height: 100vh;
  background: #135130;
  padding: 40px 0;
}

.privacy__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy__back {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #E6FFE9;
  text-decoration: none;
  margin-bottom: 40px;
  transition: opacity 0.3s ease;
}
.privacy__back:hover { opacity: 0.7; }

.privacy__title {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  color: #E6FFE9;
  margin-bottom: 30px;
}

.privacy__text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #FFFFFF;
  opacity: 0.8;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .privacy__title { font-size: 32px; }
  .privacy__text { font-size: 16px; }
}