:root {
  /* Пастельная цветовая схема */
  --primary-color: #7bb4b4; /* Бирюзовый */
  --primary-dark: #5a9494; /* Тёмно-бирюзовый */
  --secondary-color: #f6b6a2; /* Персиковый */
  --secondary-dark: #e4a08c; /* Тёмно-персиковый */
  --accent-color: #e8d2ae; /* Песочный */
  --accent-dark: #d6c09c; /* Тёмно-песочный */
  --text-primary: #333333; /* Тёмно-серый для основного текста */
  --text-secondary: #666666; /* Серый для вторичного текста */
  --text-light: #ffffff; /* Белый для текста на тёмном фоне */
  --bg-light: #f8f8f8; /* Светло-серый для фона */
  --bg-dark: #383838; /* Тёмно-серый для фона */
  --bg-cards: #ffffff; /* Белый для карточек */
  --border-color: #e0e0e0; /* Светло-серый для границ */
  --error-color: #f44336; /* Красный для ошибок */
  --success-color: #4caf50; /* Зелёный для успешных действий */
  --info-color: #2196f3; /* Синий для информации */
  --warning-color: #ff9800; /* Оранжевый для предупреждений */
  
  /* Типографика */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Размеры и отступы */
  --container-width: 1200px;
  --gap-small: 8px;
  --gap-medium: 16px;
  --gap-large: 32px;
  --gap-xl: 64px;
  --border-radius: 4px;
  --border-radius-large: 8px;
  
  /* Анимации */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--gap-medium);
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--gap-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;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--gap-medium);
}

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--gap-large);
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: var(--gap-small) auto;
}

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

/* Кнопки */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

button, input[type='submit'] {
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all var(--transition-fast);
}

/* Хедер и навигация */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all var(--transition-medium);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo a {
  color: var(--primary-color);
  text-decoration: none;
}

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

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

.nav-desktop ul li {
  margin-left: var(--gap-large);
}

.nav-desktop ul li a {
  color: var(--text-primary);
  font-weight: 600;
  position: relative;
}

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

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

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

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

.burger-menu.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

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

.burger-menu.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--bg-light);
  padding: 100px var(--gap-large) var(--gap-large);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right var(--transition-medium);
  z-index: 999;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
}

.nav-mobile ul li {
  margin-bottom: var(--gap-large);
}

.nav-mobile ul li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Hero секция */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  padding-top: 80px;
  overflow: hidden;
}

.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.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--gap-large);
}

.hero-title {
  font-size: 4rem;
  margin-bottom: var(--gap-medium);
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--gap-large);
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--gap-medium);
}

/* Nuestro Proceso */
.process {
  background-color: var(--bg-light);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--gap-large);
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-large);
  padding: var(--gap-large);
  background-color: var(--bg-cards);
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium);
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.step-content {
  flex-grow: 1;
}

.progress-bar {
  height: 8px;
  background-color: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  margin-top: var(--gap-medium);
}

.progress {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 4px;
  transition: width var(--transition-slow);
}

/* Equipo */
.team {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.team .section-title,
.team .section-subtitle {
  color: var(--text-light);
}

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

.team .card {
  background-color: var(--bg-cards);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.team .card-content {
  padding: var(--gap-large);
  text-align: center;
  color: var(--text-primary);
  background-color: var(--bg-cards);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team .card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--gap-small);
}

.team .position {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--gap-medium);
}

/* Innovación */
.innovation {
  background-color: var(--bg-light);
}

.innovation-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-large);
}

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

.innovation-showcase {
  flex: 1;
  min-width: 300px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-medium);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.innovation-card {
  padding: var(--gap-medium);
  background-color: var(--bg-cards);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innovation-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: var(--gap-medium);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

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

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Resources */
.resources {
  background-color: var(--accent-color);
  color: var(--text-primary);
}

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

.resource-card {
  background-color: var(--bg-cards);
  padding: var(--gap-large);
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--gap-medium);
}

.resource-link {
  margin-top: auto;
  padding: 8px 16px;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  color: var(--primary-color);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.resource-link:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Galería */
.gallery {
  background-color: var(--bg-light);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.gallery-item .image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--gap-medium);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--text-light);
  text-align: center;
  transition: all var(--transition-medium);
}

.gallery-caption h3 {
  color: var(--text-light);
  margin-bottom: var(--gap-small);
  font-size: 1.3rem;
}

.gallery-item:hover .gallery-caption {
  padding-bottom: var(--gap-large);
}

/* Clientes */
.clientele {
  background-color: var(--secondary-color);
  color: var(--text-primary);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--gap-large);
  background-color: var(--bg-cards);
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--gap-medium);
  border: 5px solid var(--primary-color);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--gap-medium);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  position: absolute;
}

.testimonial-text::before {
  top: -10px;
  left: -10px;
}

.testimonial-text::after {
  bottom: -20px;
  right: -10px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
}

.testimonial-position {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Reconocimientos */
.accolades {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.accolades .section-title,
.accolades .section-subtitle {
  color: var(--text-light);
}

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

.accolade-card {
  background-color: var(--bg-cards);
  color: var(--text-primary);
  padding: var(--gap-large);
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-medium);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accolade-card:hover {
  transform: translateY(-5px);
}

.accolade-icon {
  width: 100px;
  height: 100px;
  margin-bottom: var(--gap-medium);
}

.accolade-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.accolade-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--gap-small);
}

.accolade-year {
  margin-top: auto;
  font-weight: 700;
  color: var(--secondary-color);
}

/* Carreras */
.careers {
  background-color: var(--bg-light);
}

.careers-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-large);
}

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

.careers-positions {
  flex: 1;
  min-width: 300px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--gap-medium);
}

.accordion-item {
  background-color: var(--bg-cards);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  padding: var(--gap-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--bg-cards);
  transition: background-color var(--transition-fast);
}

.accordion-header:hover {
  background-color: var(--border-color);
}

.accordion-header h3 {
  margin-bottom: 0;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.accordion-content {
  padding: 0 var(--gap-medium);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.accordion-item.active .accordion-content {
  padding: var(--gap-medium);
}

/* FAQ */
.faq {
  background-color: var(--accent-color);
  color: var(--text-primary);
}

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

/* Contacto */
.contact {
  background-color: var(--bg-light);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-large);
  margin-bottom: var(--gap-large);
}

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

.info-item {
  margin-bottom: var(--gap-large);
}

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

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: var(--bg-cards);
  padding: var(--gap-large);
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: var(--gap-medium);
}

.form-group label {
  display: block;
  margin-bottom: var(--gap-small);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
  width: 100%;
  height: 100%;
}

.map-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--gap-xl) 0 var(--gap-medium);
}

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

.footer h3 {
  color: var(--text-light);
  margin-bottom: var(--gap-medium);
  position: relative;
}

.footer h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  margin-top: var(--gap-small);
}

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

.footer-links ul li {
  margin-bottom: var(--gap-small);
}

.footer-links ul li a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-small);
}

.social-links li a {
  color: var(--text-light);
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.social-links li a:hover {
  color: var(--primary-color);
}

.newsletter-form {
  display: flex;
  margin-top: var(--gap-medium);
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  padding: 12px;
  border: none;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

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

.footer-bottom p {
  margin-bottom: var(--gap-small);
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--text-light);
  padding: var(--gap-medium);
  z-index: 9999;
}

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

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--gap-xl) var(--gap-medium);
}

.success-content {
  max-width: 600px;
  background-color: var(--bg-cards);
  padding: var(--gap-xl);
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--gap-large);
}

.success-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.success-title {
  color: var(--success-color);
  margin-bottom: var(--gap-medium);
}

.success-message {
  margin-bottom: var(--gap-large);
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 160px;
  padding-bottom: var(--gap-xl);
  max-width: 900px;
  margin: 0 auto;
}

.page-content h1 {
  margin-bottom: var(--gap-large);
}

.page-content h2 {
  margin-top: var(--gap-large);
  margin-bottom: var(--gap-medium);
  font-size: 2rem;
}

.page-content p {
  margin-bottom: var(--gap-medium);
  line-height: 1.7;
}

.page-content ul, 
.page-content ol {
  margin-bottom: var(--gap-medium);
  margin-left: var(--gap-large);
}

.page-content li {
  margin-bottom: var(--gap-small);
}

/* Responsive */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .process-step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-number {
    margin-bottom: var(--gap-medium);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: var(--gap-small);
  }
  
  .newsletter-form button {
    width: 100%;
    border-radius: var(--border-radius);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: var(--gap-large) 0;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.fade-in {
  animation: fadeIn var(--transition-medium) forwards;
}

.slide-left {
  animation: slideInLeft var(--transition-medium) forwards;
}

.slide-right {
  animation: slideInRight var(--transition-medium) forwards;
}

.scale-in {
  animation: scaleIn var(--transition-medium) forwards;
}

.pulse {
  animation: pulse 2s infinite;
}
h1{
  font-size: 20px;
}