 .site-header-alt { background: var(--secondary-color); padding: 15px 0; box-shadow: 0 4px 8px var(--button-shadow); }
.header-wrapper-alt { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }

.logo-alt img { height: 50px; width: auto; }

.navigation-alt .nav-list-alt { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }

.navigation-alt .nav-list-alt .nav-item-alt a { text-decoration: none; font-size: 1rem; font-weight: 600; color: var(--text-color); padding: 8px 12px; transition: color 0.3s ease, transform 0.2s ease; }

.navigation-alt .nav-list-alt .nav-item-alt a:hover { color: var(--primary-color); transform: translateY(-2px); }

.menu-toggle-alt { display: none; flex-direction: column; gap: 5px; cursor: pointer; }

.menu-toggle-alt span { width: 30px; height: 3px; background: var(--text-color); transition: 0.3s ease; }

.menu-toggle-alt.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }

.menu-toggle-alt.active span:nth-child(2) { opacity: 0; }

.menu-toggle-alt.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) { .navigation-alt { display: none; } .menu-toggle-alt { display: flex; } }




/* Unique Footer Styles */
.unique-footer {
  position: relative;
  background-color: #0d0d0d;      /* Dark background */
  color: #e0e0e0;               /* Light text */
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.unique-footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);  /* Light overlay for subtle effect */
  z-index: 1;
}

.unique-footer-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.unique-footer-info p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Footer Buttons */
.footer-buttons {
  margin-bottom: 20px;
}

.footer-btn {
  display: inline-block;
  margin: 0 10px;
  padding: 8px 16px;
  background-color: #333;  /* Dark button background */
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.footer-btn:hover {
  background-color: #555;
}

.unique-footer-copy p {
  font-size: 14px;
  border-top: 1px solid rgba(224, 224, 224, 0.2);
  padding-top: 10px;
  margin: 0;
  opacity: 0.85;
} .hero-new { position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; padding: 60px 20px; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); z-index: 1; }

.hero-content { position: relative; z-index: 2; max-width: 800px; text-align: center; color: var(--text-color); }

.hero-title { font-family: var(--font-secondary); font-size: 3rem; text-transform: uppercase; margin-bottom: 1rem; color: var(--primary-color); animation: fadeInDown 1s ease; }

.hero-desc { font-family: var(--font-primary); font-size: 1.2rem; margin-bottom: 2rem; line-height: 1.5; color: var(--text-color); animation: fadeInUp 1s ease; }

.hero-btn { padding: 12px 30px; font-size: 1rem; border-radius: 8px; background: var(--button-bg); color: var(--button-text); border: none; cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; }

.hero-btn:hover { background: var(--button-hover-bg); transform: translateY(-3px); }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) { .hero-title { font-size: 2.5rem; } .hero-desc { font-size: 1rem; } .hero-btn { font-size: 0.9rem; padding: 10px 20px; } }

@media (max-width: 480px) { .hero-title { font-size: 2rem; } .hero-desc { font-size: 0.9rem; } .hero-btn { font-size: 0.8rem; padding: 8px 16px; } }


/* === Глобальные переменные для Features === */
:root {
    --features-bg: var(--background-color); /* Фон секции */
    --features-text-color: var(--text-color); /* Цвет текста */
    --features-title-color: var(--primary-color); /* Цвет заголовка */
    --features-subtitle-color: var(--secondary-color); /* Цвет подзаголовка */
    --features-card-bg: var(--card-bg); /* Фон карточек */
    --features-card-shadow: var(--shadow-color); /* Тень карточек */
    --features-icon-bg: var(--primary-color); /* Фон иконки */
}

/* === Общие стили для секции Features === */
.features {
    background: var(--features-bg);
    color: var(--features-text-color);
    padding: 80px 20px;
    text-align: center;
}

/* Контейнер */
.features .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Заголовки */
.features .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--features-title-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.features .section-subtitle {
    font-size: 1.2rem;
    color: var(--features-subtitle-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* === Grid Сетка === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

/* === Карточки (Feature Cards) === */
.feature-card {
    background: var(--features-card-bg);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px var(--features-card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px var(--features-card-shadow);
}

/* === Иконки в карточках === */
.feature-card .icon {
    width: 90px;
    height: 90px;
    background: var(--features-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden; /* Обрезаем края */
    padding: 0; /* Убираем отступы */
}

.feature-card:hover .icon {
    transform: scale(1.1);
}

.feature-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Заполняет весь круг */
    border-radius: 50%; /* Делаем изображение круглым */
}

/* === Текст в карточке === */
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* === Адаптивность === */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 60px 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card .icon {
        width: 70px;
        height: 70px;
    }

    .feature-card .icon img {
        width: 50px;
        height: 50px;
    }

    .features .section-title {
        font-size: 2rem;
    }

    .features .section-subtitle {
        font-size: 1rem;
    }
}


.stats-section-6 {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: var(--text-color);
  overflow: hidden;
}

.stats-section-6 .stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.stats-section-6 .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.stats-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stats-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.stats-image img:hover {
  transform: scale(1.05);
}

.stats-info {
  flex: 1 1 55%;
}

.stats-heading {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.stats-text {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stats-item {
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.stats-value {
  font-family: var(--font-secondary);
  font-size: 2rem;
  margin: 0;
  color: var(--accent-color);
}

.stats-caption {
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-top: 10px;
  text-transform: uppercase;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .stats-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .stats-heading {
    font-size: 2.2rem;
  }
  .stats-text {
    font-size: 1rem;
  }
}


.faq-accordion {
  background: var(--background-color);
  padding: 60px var(--container-padding);
  color: var(--text-color);
}

.faq-section-title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid var(--secondary-color);
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-item.open .faq-content {
  max-height: 500px;
  padding: 15px 20px;
}

.faq-content p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .faq-section-title {
    font-size: 2rem;
  }
  .faq-header {
    font-size: 0.95rem;
  }
  .faq-content {
    font-size: 0.9rem;
  }
}


.parallax-variant-2 {
  position: relative;
  overflow: hidden;
  height: 35rem;
  background-color: var(--background-color);
}

.parallax-variant-2 .parallax-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  will-change: transform;
  transition: transform 0.2s ease-out;
}

.parallax-variant-2 .parallax-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: 1rem 20px;
  color: var(--primary-color);
}

.parallax-variant-2 .parallax-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.parallax-variant-2 .parallax-description {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .parallax-variant-2 .parallax-title {
    font-size: 2.2rem;
  }
  .parallax-variant-2 .parallax-description {
    font-size: 1rem;
  }
}


.about-alt2 {
  padding: 60px 20px;
  background: var(--background-color);
}

.about-alt2 .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-alt2-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-alt2-text {
  flex: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,240,240,0.95));
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-alt2-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-alt2-description {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-alt2-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-alt2-list li {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.about-alt2-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-bg);
  color: var(--button-text);
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.about-alt2-btn:hover {
  background: var(--button-hover-bg);
  transform: translateY(-3px);
}

.about-alt2-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-alt2-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.about-alt2-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-alt2-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-alt2-text, .about-alt2-image {
    width: 100%;
  }
  .about-alt2-text {
    margin-bottom: 20px;
  }
}


/* CSS для Cookie Popup, использующий переменные темы */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary-color);  /* Используем цвет из темы */
  color: var(--text-color);
  padding: 20px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
  display: none; /* По умолчанию скрыто; показывается JS, если необходимо */
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.cookie-popup-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-primary);
}

.cookie-message {
  font-size: 16px;
  text-align: center;
  margin: 0 0 15px;
}

.cookie-message a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-message a:hover {
  color: var(--accent-color);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* Кнопки оформлены в соответствии с темой */
.cookie-accept,
.cookie-decline {
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Кнопка Accept использует основной акцент */
.cookie-accept {
  background: var(--button-bg);
  color: var(--button-text);
  border-color: var(--button-border);
  box-shadow: 0 4px 8px var(--button-shadow);
}

/* Кнопка Decline использует вторичный стиль */
.cookie-decline {
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
  border-color: var(--button-secondary-border);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-accept:hover,
.cookie-decline:hover {
  transform: translateY(-2px);
}

 .card-grid-section { background: var(--secondary-color); padding: 50px var(--container-padding); text-align: center; }
.card-grid-section .container { max-width: 1200px; margin: 0 auto; }

.grid-title { font-family: var(--font-secondary); font-size: 32px; color: var(--text-color); margin-bottom: 10px; }

.grid-subtitle { font-family: var(--font-primary); font-size: 18px; color: var(--text-color); opacity: 0.8; margin-bottom: 30px; }

.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

.grid-card { position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; transition: transform 0.3s ease; }

.grid-card-img { width: 100%; height: 380px; }

.grid-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.grid-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.75); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.4s ease; }

.grid-card:hover .grid-overlay { opacity: 1; }

.grid-card:hover .grid-card-img img { transform: scale(1.1); }

.grid-card-title { font-family: var(--font-secondary); font-size: 24px; color: var(--text-color); margin-bottom: 10px; }

.grid-card-text { font-family: var(--font-primary); font-size: 14px; color: var(--text-color); text-align: center; margin-bottom: 15px; padding: 0 15px; }

.btn { display: inline-block; padding: 10px 20px; font-family: var(--font-primary); font-size: 14px; font-weight: bold; text-transform: uppercase; color: var(--button-text); background: var(--button-bg); border: 2px solid var(--button-border); border-radius: 5px; text-decoration: none; transition: background 0.3s, transform 0.2s; }

.btn:hover { background: var(--button-hover-bg); transform: translateY(-2px); }




/* Отступы для всего блока карточек */
.u-cards-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Сетка карточек */
.u-cards-opt {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: minmax(288px, 386px);
  grid-template-rows: repeat(3, 422px);
  gap: 32px;
  justify-content: center;
  align-items: center;
}

/* Универсальный стиль карточки — фон теперь берётся из глобальной переменной,
   а затемняется с помощью полупрозрачного наложения */
.u-card-opt {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 386px;
  height: 100%;
  border-radius: 0.5rem;
  background: var(--background-color); /* фон соответствует фону сайта */
}

/* Затемнение фона карточки (слегка затемнённый слой поверх фонового цвета) */
.u-card-opt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* затемнение на 10% */
  pointer-events: none;
  z-index: 0;
}

/* Изображение делаем круглым и уменьшаем его размер */
.u-card-opt__img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 84.4444%;
  transition: transform ease-in-out 0.5s;
  transform: translate(11%, -46%);
  z-index: 2;
}

.u-card-opt__img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13.75rem;
  height: 13.75rem;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.582);
  transition: transform ease-in-out 0.5s;
  border-radius: 50%;
}

/* Контент карточки — текст и заголовки оформляются согласно глобальным переменным темы */
.u-card-opt__content {
  position: absolute;
  top: 55.5556%;
  left: 0;
  right: 0;
  display: grid;
  grid-row-gap: 1em;
  padding: 1rem 1.25rem;
  text-align: center;
  transition: top ease-in-out 1s;
  z-index: 1;
  font-family: var(--font-primary);
  color: var(--text-color);
}

.u-card-opt__caption {
  position: relative;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-family: var(--font-secondary);
  color: var(--text-color);
}

/* Блок размеров */
.u-card-opt-size {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  opacity: 1;
  visibility: visible;
  transition-delay: 0.5s;
  font-family: var(--font-primary);
  color: var(--text-color);
}

.u-card-opt-size__caption {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.u-card-opt-size__list {
  display: flex;
}

.u-card-opt-size__item {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.375rem;
  background: #fff;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--text-color);
  border-radius: 0.25rem;
  transition: margin ease-in-out 0.5s;
}

.u-card-opt-size__item:last-child {
  margin-right: 0;
}

/* Кнопка: стили полностью наследуются из глобальных переменных темы */
.u-card-opt__btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: var(--button-bg);
  font-size: 1em;
  line-height: 140%;
  text-decoration: none;
  border-radius: 0.375rem;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
  font-family: var(--font-primary);
  color: var(--button-text);
  border: 1px solid var(--button-border);
}

.u-card-opt__btn:hover,
.u-card-opt__btn:focus {
  background: var(--button-hover-bg);
}

/* Остальные hover-эффекты и адаптивные стили остаются без изменений */
@media (any-hover: hover) and (any-pointer: fine) {
  .u-card-opt__img-wrap {
    transition: transform ease-in-out 0.5s;
    transform: none;
    z-index: 2;
  }
  .u-card-opt:hover .u-card-opt__img-wrap {
    transform: translate(11%, -46%);
  }
  .u-card-opt__img {
    width: 13.75rem;
    height: 13.75rem;
    transform: translate(-50%, -50%) scale(1);
    transition: transform ease-in-out 0.5s;
    border-radius: 50%;
  }
  .u-card-opt:hover .u-card-opt__img {
    transform: translate(-50%, -50%) scale(1.582);
  }
  .u-card-opt__content {
    top: 84.4444%;
    transition: top ease-in-out 1s;
  }
  .u-card-opt:hover .u-card-opt__content {
    top: 55.5556%;
  }
  .u-card-opt__caption {
    font-size: 1rem;
    transition: font-size ease-in-out 1s;
  }
  .u-card-opt:hover .u-card-opt__caption {
    font-size: 1.125rem;
  }
  .u-card-opt-size {
    opacity: 0;
    visibility: hidden;
    transition: opacity ease-in-out 0.5s, visibility ease-in-out 0.5s;
  }
  .u-card-opt:hover .u-card-opt-size {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.5s;
  }
  .u-card-opt__btn {
    opacity: 0;
    transform: translateY(3.125rem);
    transition: opacity ease-in-out 0.5s, transform ease-in-out 0.5s;
  }
  .u-card-opt:hover .u-card-opt__btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.75s;
  }
}

@media screen and (min-width: 1024px) {
  .u-cards-opt {
    grid-template-columns: repeat(3, 288px);
    grid-template-rows: minmax(auto, 359px);
  }
  .u-card-opt {
    max-width: 288px;
  }
}

@media screen and (min-width: 1280px) {
  .u-cards-opt {
    grid-template-columns: repeat(3, 300px);
  }
  .u-card-opt {
    max-width: 300px;
  }
}



    /* Стили для формы */
    .contact-form {
      background: var(--bg-section);
      padding: 60px 30px;
      margin: 80px auto;
      max-width: 600px;
      border-radius: 12px;
      border: 2px solid var(--border-section);
      position: relative;
      overflow: hidden;
    }

    /* Затемнённый оверлей для всей секции */
    .contact-form::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay-bg);
      z-index: 0;
    }

    /* Контейнер внутри секции */
    .container {
      position: relative;
      z-index: 1;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Основной блок с формой */
    .contact-form__content {
      background: var(--bg-content);
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 10px var(--shadow-color);
    }

    /* Заголовок формы */
    .contact-form__title {
      font-family: var(--font-title);
      font-size: 2.5rem;
      color: var(--title-color);
      text-transform: uppercase;
      margin-bottom: 20px;
      text-align: center;
    }

    /* Метки для полей ввода */
    .contact-form label {
      display: block;
      font-family: var(--font-body);
      font-size: 1.1rem;
      color: var(--label-color);
      margin-bottom: 5px;
    }

    /* Поля ввода и textarea */
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--label-color);
      border: 1px solid var(--input-border);
      border-radius: 8px;
      outline: none;
      transition: border 0.3s ease;
    }

    /* Фокус на полях ввода */
    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--input-focus);
    }

    /* Кнопка отправки */
    .submit-btn {
      display: block;
      width: 100%;
      padding: 14px 0;
      background: var(--button-bg);
      color: #FFFFFF;
      font-family: var(--font-body);
      font-size: 1.1rem;
      font-weight: bold;
      text-transform: uppercase;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(255, 111, 97, 0.4);
    }

    /* Эффект при наведении на кнопку */
    .submit-btn:hover {
      background: var(--button-hover);
      transform: scale(1.05);
    }

    /* Сообщение об успешной отправке */
    #success-message {
      display: none;
      text-align: center;
      font-family: var(--font-body);
      font-size: 1.2rem;
      color: var(--success-color);
      margin-top: 20px;
      opacity: 0;
      animation: fadeIn 0.5s ease-in-out forwards;
    }

    /* Анимация появления сообщения */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Адаптивность */
    @media (max-width: 768px) {
      .contact-form {
        padding: 60px 15px;
        margin: 40px auto;
      }

      .contact-form__content {
        padding: 30px;
      }

      .contact-form__title {
        font-size: 2rem;
      }

      .contact-form label {
        font-size: 1rem;
      }

      .submit-btn {
        font-size: 1rem;
        padding: 12px 20px;
      }
    }

