/* --- Global & Variables --- */
:root {
  /* Palette: Earthen / Eco-Modern */
  --color-bg: #f4f1ea; /* Песочный светлый */
  --color-surface: #e8e4d9; /* Чуть темнее песок */
  --color-text: #2c3632; /* Темно-зеленый/угольный (текст) */
  --color-primary: #4a5d44; /* Оливковый (основной) */
  --color-accent: #d97757; /* Терракотовый (акцент) */
  --color-light: #ffffff;

  /* Typography */
  --font-heading: "Syne", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --container-width: 1240px;
  --header-height: 80px;
  --radius-fluid: 24px; /* Мягкое скругление */
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(244, 241, 234, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(74, 93, 68, 0.1);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.header__logo svg {
  transition: transform 0.4s ease;
}

.header__logo:hover svg {
  transform: rotate(15deg) scale(1.1);
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
}

.header__list {
  display: flex;
  gap: 40px;
  align-items: center;
}

.header__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
}

/* Micro-interaction: Organic underline */
.header__link:not(.header__link--cta)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.header__link:not(.header__link--cta):hover::after {
  width: 100%;
}

.header__link--cta {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 12px 28px;
  border-radius: 50px; /* Fully rounded */
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.header__link--cta:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}

.header__burger,
.header__close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
}

/* --- Mobile Menu --- */
@media (max-width: 992px) {
  .header__burger {
    display: block;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__list {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .header__link {
    font-size: 1.5rem;
  }

  .header__close {
    display: block;
    position: absolute;
    top: 24px;
    right: 20px;
    font-size: 2rem;
  }
}

/* --- Footer --- */
.footer {
  background-color: #262b29; /* Dark Earth */
  color: #e0e0e0;
  padding: 80px 0 30px;
  border-top-left-radius: 60px; /* Fluid shape */
  border-top-right-radius: 60px;
  margin-top: 80px;
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-light);
  display: block;
  margin-bottom: 20px;
}

.footer__desc {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 300px;
}

.footer__heading {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links li,
.footer__contacts li {
  margin-bottom: 14px;
}

.footer__links a {
  color: #b0b0b0;
  font-size: 0.95rem;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  display: inline-block;
}

.footer__links a:hover {
  color: var(--color-accent);
  transform: translateX(5px); /* Micro-animation */
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #b0b0b0;
  font-size: 0.95rem;
}

.footer__contacts i {
  color: var(--color-accent);
  min-width: 20px;
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  opacity: 0.6;
}

@media (max-width: 992px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
  .footer {
    border-radius: 40px 40px 0 0;
  }
}

/* --- Buttons & UI Components --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-light);
  /* Органическая форма кнопки (не просто круг) */
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0 10px 30px rgba(217, 119, 87, 0.3);
}

.btn--primary:hover {
  transform: scale(1.05) rotate(-2deg);
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; /* Превращается в овал */
  background-color: #c06040;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Анимированный Blob на фоне */
.hero__bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 80vw;
  height: 80vw;
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

.hero__blob path {
  fill: #dce2d6; /* Светло-оливковый оттенок */
  transition: d 2s ease-in-out; /* Плавный морфинг SVG */
}

.hero__container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero__tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(74, 93, 68, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(3rem, 5vw, 5rem); /* Адаптивный гигантский шрифт */
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.hero__title--highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

/* Подчеркивание-волна */
.hero__title--highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 20 50 10 T 100 10' stroke='%23D97757' fill='none' stroke-width='4'/%3E%3C/svg%3E");
  background-size: 50% 100%;
  z-index: -1;
  opacity: 0.7;
}

.hero__desc {
  font-size: 1.2rem;
  color: #5c6660;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 50px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #888;
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 12px;
  border-radius: 10px;
}

.hero__note i {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.hero__stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* Visual Side */
.hero__visual {
  position: relative;
}

.image-mask {
  /* Ключевой элемент стиля Fluid: маска изображения */
  width: 100%;
  height: 500px;
  overflow: hidden;
  /* Сложная форма капли */
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  animation: morph 8s ease-in-out infinite;
  box-shadow: 20px 20px 0px rgba(74, 93, 68, 0.1);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1); /* Легкий зум для эффекта глубины */
}

.hero__sticker {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--color-light);
  padding: 20px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-text);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: rotate(-15deg);
  animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes morph {
  0% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  }
  33% {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  }
  66% {
    border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
  }
  100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-15deg);
  }
  50% {
    transform: translateY(-15px) rotate(-10deg);
  }
}

/* Mobile */
@media (max-width: 992px) {
  .hero {
    padding-top: 120px;
  }
  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__actions {
    align-items: center;
  }
  .hero__stats {
    justify-content: center;
  }
  .image-mask {
    height: 350px;
    width: 80%;
    margin: 0 auto;
  }
  .hero__sticker {
    left: 0;
    bottom: 0;
  }
  .hero__bg {
    top: 0;
    right: -50%;
  }
}

/* --- Common Section Styles --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 24px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 50px;
  color: #5c6660;
}

.center {
  text-align: center;
}
.highlight {
  color: var(--color-primary);
  font-weight: 600;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 2px solid transparent;
}

.btn-link:hover {
  color: var(--color-accent);
  gap: 12px; /* Micro-animation: arrow slide */
}

/* --- About Section --- */
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #444;
}

.about__visual {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Organic Floating Cards */
.float-card {
  position: absolute;
  background: #fff;
  padding: 20px 30px;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(74, 93, 68, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--color-text);
  z-index: 2;
  transition: transform 0.3s ease;
}

.float-card i {
  color: var(--color-accent);
}

.float-card--1 {
  top: 10%;
  left: 0;
  animation: floatY 4s ease-in-out infinite;
}
.float-card--2 {
  top: 40%;
  right: -20px;
  animation: floatY 5s ease-in-out infinite 0.5s;
}
.float-card--3 {
  bottom: 10%;
  left: 20%;
  animation: floatY 6s ease-in-out infinite 1s;
}

.float-card:hover {
  transform: scale(1.1) !important;
  cursor: default;
}

.about__blob-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background-color: #e8e4d9;
  border-radius: 63% 37% 39% 61% / 46% 54% 46% 54%;
  z-index: 1;
  animation: rotateBlob 20s linear infinite;
}

/* --- Innovations Section --- */
.innovations {
  background-color: var(--color-surface);
  /* Curved section dividers */
  border-radius: 80px 80px 80px 80px / 40px 40px 40px 40px;
  margin: 40px 20px; /* Inset look */
}

.innovations__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

/* Fluid Cards (Blobs) */
.blob-card {
  background: #fff;
  padding: 40px 30px;
  width: 300px;
  min-height: 320px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blob-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Unique shapes for each card */
.blob-card--1 {
  border-radius: 44% 56% 48% 52% / 55% 39% 61% 45%;
}
.blob-card--2 {
  border-radius: 65% 35% 61% 39% / 44% 56% 44% 56%;
}
.blob-card--3 {
  border-radius: 36% 64% 39% 61% / 54% 46% 54% 46%;
}

.blob-card__icon {
  width: 60px;
  height: 60px;
  background-color: rgba(217, 119, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.blob-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.blob-card__text {
  font-size: 0.95rem;
  color: #666;
}
.innovations__cta {
  text-align: center;
}

/* --- Benefits Section --- */
.benefits__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits__image-wrapper {
  position: relative;
}

.benefits__img {
  width: 100%;
  /* Complex organic clip-path */
  clip-path: polygon(13% 4%, 87% 0, 100% 86%, 86% 100%, 11% 95%, 0 17%);
  border-radius: 20px;
  transition: clip-path 0.5s ease;
}

.benefits__img:hover {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.benefits__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px 0 20px 0;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Organic List */
.organic-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.organic-list__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.organic-list__marker {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(217, 119, 87, 0.4); /* Transparent accent */
  position: relative;
  padding-left: 10px;
}

.organic-list__marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(244, 241, 234, 1);
  border: 1px solid var(--color-surface);
  border-radius: 50% 40% 60% 30% / 40% 50% 60% 40%;
  z-index: -1;
}

.organic-list__info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.organic-list__info p {
  font-size: 0.95rem;
  color: #666;
}

/* Animations */
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes rotateBlob {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .about__container,
  .benefits__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__visual {
    order: -1;
    margin-bottom: 40px;
  }
  .float-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 10px;
    display: inline-flex;
    animation: none;
  }
  .about__blob-bg {
    display: none;
  }
  .innovations {
    margin: 20px 0;
    border-radius: 40px;
    padding: 60px 20px;
  }
  .organic-list__item {
    text-align: left;
  }
}

/* --- Contact Section --- */
.contact {
  background-color: #fff;
  overflow: hidden;
}

.contact__container {
  position: relative;
  z-index: 2;
}

/* Organic Background Blob */
.contact__blob-bg {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(217, 119, 87, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.contact__wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #f9f7f2; /* Very light sand */
  padding: 50px;
  border-radius: 40px; /* Soft card */
  box-shadow: 0 20px 60px rgba(74, 93, 68, 0.05);
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-left: 15px;
}

.form-input {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid transparent;
  background-color: #fff;
  border-radius: 30px; /* Pill shape inputs */
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  color: var(--color-text);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(217, 119, 87, 0.1);
}

/* Validation Styles */
.form-input.invalid {
  border-color: #e74c3c;
  background-color: #fdf2f2;
}

.form-input.valid {
  border-color: #27ae60;
}

.error-msg {
  display: none;
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 5px;
  margin-left: 15px;
}

.form-input.invalid + .error-msg {
  display: block;
}

/* Custom Checkbox & Captcha */
.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 0.9rem;
  color: #666;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 2px solid #ddd;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* Styles for specific checkmarks */
.circle-checkmark {
  border-radius: 50%;
}
.box-checkmark {
  border-radius: 6px;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.checkmark::after {
  content: "";
  display: none;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-2px);
}

.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

.captcha-box {
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  width: fit-content;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.captcha-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--color-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn--full {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 20px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
  padding: 40px;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #27ae60;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Cookie Popup --- */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: bottom 0.5s ease;
  border: 1px solid rgba(74, 93, 68, 0.1);
}

.cookie-popup.show {
  bottom: 20px;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.9rem;
}

.cookie-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* --- Policy Pages Styling (.pages) --- */
.pages {
  padding: 140px 0 80px;
  background-color: var(--color-bg);
}

.pages h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.pages h2 {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-top: 30px;
  margin-bottom: 15px;
}
.pages p {
  margin-bottom: 15px;
  color: #444;
}
.pages ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.pages li {
  margin-bottom: 10px;
  list-style: disc;
  color: #444;
}
.pages a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 576px) {
  .contact__wrapper {
    padding: 30px 20px;
  }
  .cookie-popup {
    left: 10px;
    right: 10px;
    width: auto;
  }
}
