:root {
  /* Основные цвета (аналоговая схема с биоморфным уклоном) */
  --primary-color: #1a6b8f; /* основной синий */
  --primary-dark: #0e4a63; 
  --primary-light: #2d8cb5;
  
  --secondary-color: #1a8f6b; /* комплементарный зеленый */
  --secondary-dark: #0e634a;
  --secondary-light: #2db58c;
  
  --accent-color: #6b1a8f; /* акцентный фиолетовый */
  --accent-dark: #4a0e63;
  --accent-light: #8c2db5;
  
  /* Нейтральные цвета */
  --dark-color: #151b26;
  --gray-dark: #2d3748;
  --gray-medium: #718096;
  --gray-light: #e2e8f0;
  --light-color: #ffffff;
  
  /* Биоморфные акценты */
  --bio-gradient-1: linear-gradient(120deg, rgba(26, 107, 143, 0.8), rgba(26, 143, 107, 0.8));
  --bio-gradient-2: linear-gradient(120deg, rgba(26, 143, 107, 0.8), rgba(107, 26, 143, 0.8));
  --bio-shadow: 0 10px 30px -10px rgba(26, 107, 143, 0.3);
  
  /* Размеры и отступы */
  --header-height: 80px;
  --container-padding: 5%;
  --section-spacing: 80px;
  --card-border-radius: 16px;
  --button-border-radius: 30px;
  
  /* Анимация */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

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

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

ul {
  list-style: none;
}

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

.section {
  padding: var(--section-spacing) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  color: var(--primary-dark);
}

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

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: var(--gray-medium);
}

/* Кнопки */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--button-border-radius);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: var(--transition-fast);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
  box-shadow: 0 4px 15px rgba(26, 107, 143, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--light-color);
  box-shadow: 0 6px 20px rgba(26, 107, 143, 0.4);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--light-color);
  box-shadow: 0 4px 15px rgba(26, 143, 107, 0.3);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  color: var(--light-color);
  box-shadow: 0 6px 20px rgba(26, 143, 107, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

/* Хедер и навигация */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 2;
}

.logo a {
  color: var(--primary-dark);
  display: flex;
  align-items: center;
}

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

.nav-desktop {
  display: flex;
}

.nav-desktop ul {
  display: flex;
  gap: 2rem;
}

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

.nav-desktop a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -8px;
  left: 0;
  background: var(--bio-gradient-1);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

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

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--light-color);
  padding-top: var(--header-height);
  z-index: 1;
  transform: translateX(100%);
  transition: var(--transition-medium);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}

.nav-mobile a {
  color: var(--gray-dark);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

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

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

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

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.nav-mobile.active {
  transform: translateX(0);
}

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

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

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  color: var(--light-color);
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-subtitle {
  color: var(--light-color);
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* Servicios Section */
.servicios {
  background-color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: var(--light-color);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--bio-shadow);
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -15px rgba(26, 107, 143, 0.4);
}

.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: var(--transition-medium);
}

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

.card-content {
  padding: 2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.card p {
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
}

/* Casos de Éxito Section */
.casos {
  background-color: #f8fafc;
  position: relative;
}

.casos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/bio-pattern.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.case-studies-slider {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.case-study {
  height: 100%;
}

.case-study .card {
  height: 100%;
}

.progress-container {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.progress-label {
  width: 60%;
  font-weight: 500;
  color: var(--gray-dark);
  text-align: left;
}

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

.progress {
  height: 100%;
  background: var(--bio-gradient-1);
  border-radius: 4px;
  transition: width 1s ease;
}

.progress-value {
  width: 40%;
  text-align: right;
  font-weight: 700;
  color: var(--primary-color);
}

/* Recursos Section */
.recursos {
  background-color: var(--light-color);
}

.recursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Precios Section */
.precios {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.precios::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--bio-gradient-2);
  opacity: 0.1;
  top: -300px;
  right: -300px;
  z-index: 0;
}

.precios::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--bio-gradient-1);
  opacity: 0.1;
  bottom: -200px;
  left: -200px;
  z-index: 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: var(--light-color);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--bio-shadow);
  transition: var(--transition-medium);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 40px -10px rgba(26, 107, 143, 0.5);
  border: 2px solid var(--primary-light);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -15px rgba(26, 107, 143, 0.4);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-tag {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--accent-color);
  color: var(--light-color);
  padding: 5px 30px;
  font-size: 0.9rem;
  font-weight: 700;
  transform: rotate(45deg);
  z-index: 2;
  box-shadow: 0 3px 10px rgba(107, 26, 143, 0.3);
}

.pricing-header {
  padding: 2rem;
  background: linear-gradient(45deg, var(--primary-light), var(--primary-color));
  color: var(--light-color);
  text-align: center;
}

.pricing-header h3 {
  color: var(--light-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.price {
  font-size: 1.2rem;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.period {
  font-size: 1rem;
  opacity: 0.8;
}

.pricing-features {
  padding: 2rem;
  flex-grow: 1;
}

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

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: var(--gray-dark);
}

.pricing-features .animated-icon {
  margin-right: 10px;
  color: var(--secondary-color);
}

.pricing-footer {
  padding: 2rem;
  text-align: center;
  background-color: #f8fafc;
}

.custom-pricing {
  margin-top: 60px;
  text-align: center;
  padding: 3rem;
  background: var(--light-color);
  border-radius: var(--card-border-radius);
  box-shadow: var(--bio-shadow);
  position: relative;
  z-index: 1;
}

.custom-pricing h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.custom-pricing p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Equipo Section */
.equipo {
  background-color: var(--light-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.position {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Carreras Section */
.carreras {
  background-color: #f8fafc;
  position: relative;
}

.careers-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.careers-info h3,
.careers-positions h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.benefits-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.benefits-list .animated-icon {
  margin-right: 10px;
  color: var(--accent-color);
}

.job-card {
  background: var(--light-color);
  border-radius: var(--card-border-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--bio-shadow);
  transition: var(--transition-fast);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -10px rgba(26, 107, 143, 0.3);
}

.job-card h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.job-location {
  color: var(--gray-medium);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Contacto Section */
.contacto {
  background-color: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info h3,
.contact-form-container h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

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

.info-item .animated-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 5px;
}

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

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: 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(26, 107, 143, 0.1);
}

.form-check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-check input {
  width: 20px;
  height: 20px;
}

.form-check label {
  margin-bottom: 0;
}

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

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

.footer-info h3 {
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
  color: var(--light-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a,
.footer-legal a {
  color: var(--gray-light);
  transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.footer-social .social-links {
  justify-content: flex-start;
}

.footer-social .social-links a {
  color: var(--gray-light);
  margin-right: 1rem;
}

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

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-medium);
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(21, 27, 38, 0.9);
  color: var(--light-color);
  padding: 15px 0;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 0;
}

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

.btn-cookie {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  margin-left: 20px;
  white-space: nowrap;
}

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

/* Анимированные иконки */
.animated-icon {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  color: currentColor;
}

.animated-icon.check::before {
  content: '✓';
  display: inline-block;
  font-size: 18px;
  animation: pulse 2s infinite;
}

.animated-icon.star::before {
  content: '★';
  display: inline-block;
  font-size: 18px;
  animation: spin 6s linear infinite;
}

.animated-icon.location::before {
  content: '📍';
  font-size: 20px;
}

.animated-icon.phone::before {
  content: '📞';
  font-size: 20px;
}

.animated-icon.email::before {
  content: '✉️';
  font-size: 20px;
}

.animated-icon.clock::before {
  content: '🕒';
  font-size: 20px;
}

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

.success-content {
  max-width: 700px;
  padding: 3rem;
  background: var(--light-color);
  border-radius: var(--card-border-radius);
  box-shadow: var(--bio-shadow);
}

.success-content h1 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.success-content p {
  margin-bottom: 2rem;
  color: var(--gray-medium);
}

.success-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  animation: bounce 1s ease infinite alternate;
}

/* About, Privacy and Terms Pages */
.page-content {
  padding-top: 120px;
  padding-bottom: 80px;
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

.page-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--gray-medium);
}

.content-section {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.content-section h2 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.content-section p {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.content-section ul {
  padding-left: 20px;
  margin-bottom: 1.5rem;
}

.content-section ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 15px;
}

.content-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

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

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-15px);
  }
}

/* Медиа-запросы */
@media (max-width: 992px) {
  :root {
    --header-height: 70px;
    --section-spacing: 60px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .nav-desktop {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

@media (max-width: 768px) {
  :root {
    --section-spacing: 50px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .btn-cookie {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  :root {
    --container-padding: 20px;
    --section-spacing: 40px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}
h1{
  font-size: 20px;
}