:root {
  /* Основная цветовая схема (Раздельно-дополнительная) */
  --primary-color: #ff6b35; /* Оранжевый */
  --primary-dark: #e85a27; /* Темно-оранжевый */
  --primary-light: #ffa78c; /* Светло-оранжевый */
  --secondary-color: #2b9eb3; /* Бирюзовый */
  --secondary-dark: #1a7d8c; /* Темно-бирюзовый */
  --secondary-light: #7dcad8; /* Светло-бирюзовый */
  --accent-color: #8c4799; /* Фиолетовый */
  --accent-light: #b980c2; /* Светло-фиолетовый */
  
  /* Нейтральные цвета */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #2a2a2a;
  --border-color: #e0e0e0;
  
  /* Неоморфизм */
  --shadow-light: rgba(255, 255, 255, 0.8);
  --shadow-dark: rgba(0, 0, 0, 0.1);
  --neomorphism-bg: #f0f0f3;
  --card-radius: 16px;
  
  /* Эко-минимализм */
  --eco-green: #6b9080;
  --eco-beige: #f4f1de;
  
  /* Типографика */
  --font-headings: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Размеры */
  --container-width: 1200px;
  --container-padding: 20px;
  --header-height: 80px;
  --section-spacing: 80px;
  --card-spacing: 24px;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-dark);
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-submit, .btn-order, .cookie-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 10px;
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
  transform: translateY(-3px);
}

.btn-submit, .btn-order {
  background-color: var(--secondary-color);
  color: var(--text-light);
  width: 100%;
  font-size: 1.1rem;
  margin-top: 15px;
}

.btn-submit:hover, .btn-order:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
}

.btn-order {
  width: auto;
  margin-top: 10px;
  padding: 8px 20px;
  font-size: 0.9rem;
}

.read-more {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
}

.read-more::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-dark);
}

.read-more:hover::after {
  width: 100%;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-size: 2.5rem;
  color: var(--text-dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: var(--header-height);
  transition: all 0.3s ease;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: var(--font-headings);
}

.logo a {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin-left: 30px;
}

.nav-list a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-list a:hover {
  color: var(--primary-color);
}

.nav-list a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 40px;
  border-radius: var(--card-radius);
  animation: fadeIn 1s ease-out;
}

.hero-content h2 {
  color: var(--text-light);
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-light);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: translateY(-10px);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Menu Section */
.menu {
  padding: var(--section-spacing) 0;
  background-color: var(--neomorphism-bg);
}

.menu-carousel {
  display: flex;
  overflow-x: hidden;
  gap: 30px;
  padding: 20px 0;
  transition: transform 0.5s ease;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.prev-btn, .next-btn {
  background-color: transparent;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev-btn:hover, .next-btn:hover {
  box-shadow: 
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
}

.prev-btn span, .next-btn span {
  font-size: 0;
  position: relative;
}

.prev-btn span::before, .next-btn span::before {
  content: '';
  width: 15px;
  height: 15px;
  border-style: solid;
  position: absolute;
  top: 50%;
  left: 50%;
}

.prev-btn span::before {
  border-width: 0 0 2px 2px;
  border-color: var(--text-dark);
  transform: translate(-25%, -50%) rotate(45deg);
}

.next-btn span::before {
  border-width: 0 2px 2px 0;
  border-color: var(--text-dark);
  transform: translate(-75%, -50%) rotate(-45deg);
}

/* Card Styles */
.card {
  background-color: var(--bg-light);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 300px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
}

.card.animate {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.card-content p {
  color: var(--text-dark);
  margin-bottom: 15px;
  flex-grow: 1;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

/* Statistics Section */
.statistics {
  padding: var(--section-spacing) 0;
  background: linear-gradient(135deg, var(--eco-beige), var(--bg-light));
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.stat-item {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--card-radius);
  text-align: center;
  min-width: 220px;
  flex: 1;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-icon {
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 15px;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  width: 0%;
  border-radius: 4px;
}

/* External Resources Section */
.external-resources {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-light);
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.resource-card {
  background-color: var(--bg-light);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transition: all 0.3s ease;
  max-width: 350px;
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px);
}

.resource-link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
}

/* Contact Section */
.contact {
  padding: var(--section-spacing) 0;
  background-color: var(--neomorphism-bg);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.info-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.map-container {
  margin-top: 40px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.contact-form {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: var(--card-radius);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  background-color: var(--neomorphism-bg);
  box-shadow: 
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  box-shadow: 
    inset 6px 6px 10px var(--shadow-dark),
    inset -6px -6px 10px var(--shadow-light);
}

/* Blog Section */
.blog {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-light);
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.date {
  display: block;
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* FAQ Section */
.faq {
  padding: var(--section-spacing) 0;
  background-color: var(--neomorphism-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  background-color: var(--bg-light);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  flex: 1;
}

.toggle-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Press Section */
.press {
  padding: var(--section-spacing) 0;
  background-color: var(--bg-light);
}

.press-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.press-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.press-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.press-item:hover {
  transform: translateY(-5px);
}

.press-image {
  flex: 0 0 250px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
}

.press-content {
  flex: 1;
  min-width: 300px;
}

.press-content h3 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.press-date {
  display: block;
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 15px;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--text-light);
  opacity: 0.8;
}

.footer-links, .footer-contact, .footer-social {
  min-width: 200px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a, .social-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover, .social-links a:hover {
  color: var(--primary-light);
  opacity: 1;
}

.footer-contact p {
  margin-bottom: 10px;
  color: var(--text-light);
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  padding: 5px 0;
  position: relative;
}

.social-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.social-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-light);
  opacity: 0.6;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(42, 42, 42, 0.95);
  z-index: 9999;
  padding: 20px;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cookie-content p {
  color: var(--text-light);
  margin: 0;
  flex: 1;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: var(--primary-dark);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: var(--bg-light);
}

.success-container {
  max-width: 600px;
  padding: 40px;
  background-color: var(--bg-light);
  border-radius: var(--card-radius);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background-color: var(--eco-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  font-size: 40px;
}

.success-title {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.success-message {
  color: var(--text-dark);
  margin-bottom: 30px;
}

.back-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.back-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Privacy & Terms Pages */
.page-content {
  padding: 120px 0 60px;
}

.page-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--bg-light);
  border-radius: var(--card-radius);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.page-title {
  margin-bottom: 30px;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Media Queries */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 60px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 2.8rem;
  }
  
  .stats-container, .resources-grid, .blog-grid {
    gap: 20px;
  }
  
  .stat-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 50px;
  }
  
  .nav-list {
    display: none;
  }
  
  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 1000;
  }
  
  .nav-list.active li {
    margin: 10px 0;
    text-align: center;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero-content {
    padding: 30px 20px;
  }
  
  .hero-content h2 {
    font-size: 2.2rem;
  }
  
  .press-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --section-spacing: 40px;
    --container-padding: 15px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
    display: block;
    margin: 10px auto;
    text-align: center;
  }
  
  .card, .stat-item, .resource-card {
    min-width: 100%;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .info-icon {
    margin: 0 auto 15px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .footer-content > div {
    width: 100%;
    text-align: center;
  }
  
  .footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
}