:root {
  /* Неоморфизм + Биоморфная цветовая схема */
  --primary-color: #2c5f7c;
  --primary-dark: #1a4a67;
  --primary-light: #3e7fa2;
  
  --secondary-color: #d97941;
  --secondary-dark: #c35e2a;
  --secondary-light: #e89261;
  
  --accent-color: #8cc63f;
  --accent-dark: #72a62e;
  --accent-light: #a4d669;
  
  --background-color: #f0f5f9;
  --background-alt: #e4edf5;
  --surface-color: #ffffff;
  
  --text-dark: #222222;
  --text-medium: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  
  /* Тени для неоморфизма */
  --shadow-light: 8px 8px 16px rgba(174, 174, 192, 0.4);
  --shadow-dark: -8px -8px 16px rgba(255, 255, 255, 0.7);
  --shadow-inset-light: inset 8px 8px 16px rgba(174, 174, 192, 0.2);
  --shadow-inset-dark: inset -8px -8px 16px rgba(255, 255, 255, 0.5);
  
  /* Радиусы для биоморфного дизайна */
  --radius-small: 12px;
  --radius-medium: 24px;
  --radius-large: 36px;
  --radius-blob: 60% 40% 70% 30% / 60% 30% 70% 40%;
  
  /* Переходы и анимации */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
  
  /* Размеры контейнеров */
  --container-width: 1200px;
  --container-padding: 2rem;
}

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

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text-medium);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-small);
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

/* Контейнеры */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Секция (общие стили) */
section {
  padding: 5rem 0;
  position: relative;
}

/* Заголовок секции */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 1rem auto 0;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Кнопки */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: all var(--transition-fast);
  background-color: var(--surface-color);
  color: var(--text-medium);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:active, 
button:active, 
input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: var(--shadow-inset-light), var(--shadow-inset-dark);
}

.btn::before, 
button::before, 
input[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  z-index: -1;
}

.btn:hover::before, 
button:hover::before, 
input[type="submit"]:hover::before {
  animation: shine 1.5s;
}

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

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

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-white);
}

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

.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-white);
}

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

/* Карточки */
.card {
  background: var(--surface-color);
  border-radius: var(--radius-medium);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.card-content {
  padding: 1.5rem;
  flex: 1;
  width: 100%;
  text-align: center;
}

/* Сетка */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
}

.logo h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  z-index: 1001;
}

.logo a {
  color: inherit;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.desktop-nav li {
  margin-left: 2rem;
}

.desktop-nav a {
  color: var(--text-medium);
  font-weight: 500;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

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

.mobile-menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right var(--transition-medium);
  z-index: 1000;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-nav li {
  margin-bottom: 2rem;
}

.mobile-nav a {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 500;
}

.header.mobile-menu-open .mobile-menu-icon span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.header.mobile-menu-open .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}

.header.mobile-menu-open .mobile-menu-icon span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.header.mobile-menu-open .mobile-nav {
  right: 0;
}

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

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

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  animation: fadeIn 1s ease-out;
}

.hero-content h1, 
.hero-content p {
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Mission Section */
.mission {
  background-color: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--accent-light);
  opacity: 0.1;
  border-radius: var(--radius-blob);
  animation: blobAnimation 15s infinite alternate;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.mission-text {
  flex: 1;
}

.mission-image {
  flex: 1;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-medium);
}

.mission-image:hover {
  transform: perspective(1000px) rotateY(0);
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  opacity: 0.1;
  border-radius: var(--radius-blob);
  animation: blobAnimation 20s infinite alternate-reverse;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--radius-large);
  overflow: hidden;
  transform: perspective(1000px) rotateY(5deg);
  transition: transform var(--transition-medium);
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.team h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Services Section */
.services {
  background-color: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.services::before,
.services::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--secondary-light);
  opacity: 0.1;
  border-radius: var(--radius-blob);
}

.services::before {
  top: -50px;
  left: -50px;
  animation: blobAnimation 25s infinite;
}

.services::after {
  bottom: -50px;
  right: -50px;
  animation: blobAnimation 30s infinite reverse;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Case Studies Section */
.case-studies {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary-light);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 4px;
}

.timeline-item {
  padding: 2rem 0;
  position: relative;
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px);
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  left: 50%;
  margin-left: 80px;
}

.timeline-date {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-small);
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: bold;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: calc(50% - 10px);
  background-color: var(--primary-color);
  border: 4px solid var(--surface-color);
  top: 2.5rem;
  border-radius: 50%;
  z-index: 1;
}

/* Media Section */
.media {
  background-color: var(--background-alt);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.media .card .date {
  display: block;
  color: var(--text-light);
  margin-top: 1rem;
  font-style: italic;
}

/* Resources Section */
.resources {
  position: relative;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.resource-links li {
  margin-bottom: 0.75rem;
}

.resource-links a {
  display: inline-block;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.resource-links a:hover {
  transform: translateX(5px);
  color: var(--primary-dark);
}

/* Gallery Section */
.gallery {
  background-color: var(--background-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: transform var(--transition-medium);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* News Section */
.news {
  position: relative;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.news .card .date {
  display: block;
  color: var(--text-light);
  margin-top: 1rem;
  font-style: italic;
}

/* Events Section */
.events {
  background-color: var(--background-alt);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.event-details {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-content {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-info {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form-container {
  flex: 2;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group:nth-last-child(2),
.form-group:last-child {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-small);
  background-color: var(--surface-color);
  box-shadow: var(--shadow-inset-light);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.2);
}

.contact-form button {
  grid-column: span 2;
  justify-self: center;
}

.map-container {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
  background-size: 300% 100%;
  animation: gradient 5s ease infinite;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo h2 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.footer h3 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 0.75rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--text-white);
}

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links a {
  padding: 0.5rem 0;
  display: inline-block;
  transition: transform var(--transition-fast);
}

.social-links a:hover {
  transform: translateX(5px);
}

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

.footer-info {
  margin-bottom: 1.5rem;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-legal ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

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

.success-container {
  text-align: center;
  padding: 3rem;
  background-color: var(--surface-color);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  max-width: 600px;
  width: 100%;
  animation: successPulse 2s infinite alternate;
}

.success-icon {
  font-size: 5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

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

.success-message {
  margin-bottom: 2rem;
  color: var(--text-medium);
}

/* Terms & Privacy Pages */
.terms-page,
.privacy-page {
  padding-top: 100px;
}

.terms-container,
.privacy-container {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.terms-container h2,
.privacy-container h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
}

.terms-container h2:first-child,
.privacy-container h2:first-child {
  margin-top: 0;
}

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 1rem;
  z-index: 9999;
}

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

.cookie-content p {
  color: var(--text-white);
  margin: 0;
  padding-right: 2rem;
}

.cookie-btn {
  background-color: var(--secondary-color);
  color: var(--text-white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes blobAnimation {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes successPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.4);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(140, 198, 63, 0);
  }
}

/* Медиа-запросы */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-icon {
    display: flex;
  }
  
  .mission-content,
  .about-content,
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .mission-image,
  .about-image {
    order: -1;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    left: 0;
    margin-left: 80px;
  }
  
  .timeline-item::after {
    left: 20px;
    right: auto;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group:nth-last-child(2) {
    grid-column: span 1;
  }
  
  .contact-form button {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 12px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-legal ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-content p {
    padding-right: 0;
    margin-bottom: 1rem;
  }
}