:root {
  /* Основные цвета - футуристическая дополнительная схема */
  --primary-color: #1e88e5; /* основной синий */
  --primary-dark: #0d47a1; /* темный синий */
  --primary-light: #64b5f6; /* светлый синий */
  --secondary-color: #ff8f00; /* дополнительный оранжевый */
  --secondary-dark: #c56000; /* темный оранжевый */
  --secondary-light: #ffc046; /* светлый оранжевый */
  --accent-color: #7c4dff; /* акцентный фиолетовый */
  
  /* Нейтральные цвета */
  --dark-bg: #121212; /* темный фон */
  --dark-overlay: rgba(0, 0, 0, 0.7); /* затемнение для фонов */
  --light-overlay: rgba(255, 255, 255, 0.05); /* светлое затемнение */
  --light-bg: #f5f5f7; /* светлый фон */
  --text-dark: #333333; /* темный текст */
  --text-light: #ffffff; /* светлый текст */
  --text-muted: #777777; /* приглушенный текст */
  --border-color: rgba(255, 255, 255, 0.1); /* цвет границ */
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  --gradient-dark: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(30, 30, 30, 0.95));
  --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  
  /* Тени */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-inset: inset 0 2px 10px rgba(0, 0, 0, 0.1);
  
  /* Размеры и отступы */
  --container-width: 1200px;
  --section-padding: 80px 0;
  --section-padding-sm: 40px 0;
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  
  /* Радиусы скругления */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  
  /* Переходы и анимации */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры шрифтов */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;
  --font-size-5xl: 3.75rem;
  --font-size-6xl: 4.5rem;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: 1.5rem;
  font-size: var(--font-size-base);
}

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

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

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}

.col {
  flex: 1 0 0%;
  padding: 1rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

/* Адаптивная типографика */
@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-4xl);
  }
  
  h2 {
    font-size: var(--font-size-3xl);
  }
  
  h3 {
    font-size: var(--font-size-2xl);
  }
  
  h4 {
    font-size: var(--font-size-xl);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: var(--font-size-3xl);
  }
  
  h2 {
    font-size: var(--font-size-2xl);
  }
  
  h3 {
    font-size: var(--font-size-xl);
  }
  
  h4 {
    font-size: var(--font-size-lg);
  }
  
  .container {
    padding: 0 1rem;
  }
}

/* Кнопки */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-base);
  line-height: 1.5;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: var(--light-overlay);
  transition: all var(--transition-normal);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
  z-index: -1;
}

.btn:hover::after {
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

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

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

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

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

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

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

.btn-link {
  background-color: transparent;
  color: var(--primary-color);
  border: none;
  padding: 0.5rem 0;
  position: relative;
}

.btn-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.btn-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Хедер и навигация */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

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

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  color: var(--text-light);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-normal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.nav-links a:hover {
  color: var(--secondary-light);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

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

.burger-menu .bar {
  height: 3px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-links li {
    margin: 1rem 0;
  }
  
  .burger-menu {
    display: flex;
  }
}

/* Hero секция */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-section .overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  text-align: center;
  color: var(--text-light);
  z-index: 1;
}

.hero-content h1 {
  font-size: var(--font-size-6xl);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: var(--font-size-lg);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: var(--font-size-4xl);
  }
  
  .hero-content h2 {
    font-size: var(--font-size-2xl);
  }
  
  .hero-content p {
    font-size: var(--font-size-base);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Секция About */
.about-section {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

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

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

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  margin: 0 auto;
  transition: transform var(--transition-normal);
}

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

@media (max-width: 992px) {
  .about-content {
    flex-direction: column-reverse;
  }
}

/* Секция Mission */
.mission-section {
  position: relative;
  padding: var(--section-padding);
  color: var(--text-light);
}

.mission-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.mission-section .overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.mission-card {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal);
}

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

.mission-card h3 {
  color: var(--secondary-light);
  margin-bottom: 1rem;
}

.mission-statement {
  text-align: center;
  font-size: var(--font-size-xl);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .mission-content {
    flex-direction: column;
  }
}

/* Секция Methodology */
.methodology-section {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

.methodology-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.methodology-text {
  flex: 3;
}

.methodology-image {
  flex: 2;
  text-align: center;
}

.methodology-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  margin: 0 auto;
}

.accordion-container {
  margin-top: 2rem;
}

.accordion {
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: white;
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.accordion-header:hover {
  background-color: rgba(30, 136, 229, 0.05);
}

.accordion-icon {
  font-size: var(--font-size-xl);
  color: var(--primary-color);
  transition: transform var(--transition-normal);
}

.accordion.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.5rem;
  background-color: white;
}

.accordion.active .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

@media (max-width: 992px) {
  .methodology-content {
    flex-direction: column;
  }
  
  .methodology-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

/* Секция Statistics */
.statistics-section {
  position: relative;
  padding: var(--section-padding);
  color: var(--text-light);
}

.statistics-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.statistics-section .overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.statistics-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.statistics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal);
}

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

.stat-number {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--secondary-light);
  margin-bottom: 1rem;
  font-family: 'Archivo Black', sans-serif;
}

.stat-label {
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Секция Portfolio */
.portfolio-section {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

.portfolio-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.gallery-caption {
  padding: 1.5rem;
  text-align: center;
}

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

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Секция Awards */
.awards-section {
  position: relative;
  padding: var(--section-padding);
  color: var(--text-light);
}

.awards-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.awards-section .overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.awards-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.awards-timeline::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: var(--border-color);
  left: 50px;
  top: 0;
}

.award-item {
  display: flex;
  margin-bottom: 2.5rem;
  position: relative;
}

.award-year {
  width: 100px;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--secondary-light);
  text-align: center;
  padding-top: 0.5rem;
}

.award-info {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
}

.award-info::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid rgba(255, 255, 255, 0.1);
  left: -10px;
  top: 20px;
}

.award-info h3 {
  color: var(--secondary-light);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .awards-timeline::before {
    left: 30px;
  }
  
  .award-year {
    width: 60px;
    font-size: var(--font-size-lg);
  }
}

/* Секция Enlaces de Interés */
.enlaces-section {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

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

.enlaces-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.enlace-card {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.enlace-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.enlace-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.enlace-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 15px;
}

.enlace-link {
  margin-top: auto;
  color: var(--secondary-color);
  font-weight: 500;
  transition: color var(--transition-normal);
}

.enlace-link:hover {
  color: var(--secondary-dark);
}

/* Секция Contact */
.contact-section {
  padding: var(--section-padding);
  background-color: white;
}

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

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

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

.contact-details {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-details .icon {
  font-size: var(--font-size-xl);
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-form-container {
  flex: 1 1 400px;
}

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

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

.form-group {
  position: relative;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  background-color: #f9f9f9;
  font-family: 'Roboto', sans-serif;
  font-size: var(--font-size-base);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-checkbox input {
  width: auto;
}

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

.location-map {
  margin-top: 4rem;
}

.location-map h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Секция для contact-info-section на странице контактов */
.contact-info-section {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.contact-card {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

/* Секция для contact-form-section на странице контактов */
.contact-form-section {
  padding: var(--section-padding);
  background-color: white;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 2rem;
}

/* Стили для map-section на странице контактов */
.map-section {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

.location-details {
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}

.transport-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.transport-option {
  flex: 1 1 250px;
  max-width: 300px;
}

.transport-option h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Секция network-section на странице контактов */
.network-section {
  position: relative;
  padding: var(--section-padding);
  color: var(--text-light);
}

.network-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.network-section .overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

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

.search-container {
  margin: 2rem 0;
}

.search-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-family: 'Roboto', sans-serif;
  font-size: var(--font-size-base);
}

.search-btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.region-list {
  margin-top: 3rem;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.region-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
}

.region-item h4 {
  color: var(--secondary-light);
  margin-bottom: 0.5rem;
}

/* Секция feedback-section на странице контактов */
.feedback-section {
  padding: var(--section-padding);
  background-color: white;
}

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

.feedback-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.feedback-option {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

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

/* Страница success.html */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: var(--light-bg);
}

.success-content {
  max-width: 800px;
  padding: 3rem;
  text-align: center;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
}

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

.success-message {
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
}

.response-time {
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.success-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Секция additional-info-section на странице success */
.additional-info-section {
  padding: var(--section-padding);
  background-color: white;
}

.info-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

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

.social-links-small {
  margin-top: 1rem;
}

.text-link {
  color: var(--primary-color);
  font-weight: 500;
  transition: color var(--transition-normal);
}

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

/* Секция emergency-contact-section на странице success */
.emergency-contact-section {
  padding: var(--section-padding-sm);
  background-color: var(--light-bg);
}

.emergency-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.emergency-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-3xl);
  margin: 2rem 0;
  font-weight: 700;
  color: var(--primary-color);
}

.phone-icon {
  margin-right: 1rem;
}

.emergency-note {
  color: var(--text-muted);
}

/* Баннер для страниц */
.page-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-top: 80px;
}

.page-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.page-banner .overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.page-banner h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-banner p {
  font-size: var(--font-size-lg);
  max-width: 800px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Страница about.html */
.story-section {
  padding: var(--section-padding);
  background-color: white;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.story-image {
  flex: 1;
  text-align: center;
}

.story-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  margin: 0 auto;
}

.story-text {
  flex: 1;
}

.story-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .story-content {
    flex-direction: column;
  }
}

/* Секция values-section на странице about */
.values-section {
  position: relative;
  padding: var(--section-padding);
  color: var(--text-light);
}

.values-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.values-section .overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.values-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.value-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal);
}

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

.value-card h3 {
  color: var(--secondary-light);
  margin-bottom: 1rem;
}

/* Секция team-section на странице about */
.team-section {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.team-member {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.member-info {
  padding: 2rem;
  text-align: center;
}

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

.member-position {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Секция vision-section на странице about */
.vision-section {
  position: relative;
  padding: var(--section-padding);
  color: var(--text-light);
}

.vision-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.vision-section .overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
}

.vision-text {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.vision-text p {
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
}

/* Страница privacy.html и terms.html */
.privacy-section,
.terms-section {
  padding: var(--section-padding);
  background-color: white;
  padding-top: 100px;
}

.privacy-content,
.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.last-updated {
  text-align: right;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.privacy-introduction,
.terms-introduction {
  margin-bottom: 3rem;
}

.privacy-block,
.terms-block {
  margin-bottom: 3rem;
}

.privacy-block h2,
.terms-block h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-2xl);
}

.privacy-block h3,
.terms-block h3 {
  color: var(--secondary-color);
  margin: 1.5rem 0 1rem;
  font-size: var(--font-size-xl);
}

.terms-acknowledgment {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-links h3 {
  color: var(--secondary-light);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-lg);
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
  color: var(--secondary-light);
}

.footer-social {
  flex: 1 1 200px;
}

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

.social-links li {
  margin-bottom: 0.5rem;
}

.social-links a {
  color: var(--text-light);
  transition: color var(--transition-normal);
}

.social-links a:hover {
  color: var(--secondary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Модальное окно */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  max-width: 800px;
  width: 90%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: var(--font-size-2xl);
  color: var(--text-dark);
  cursor: pointer;
  transition: transform var(--transition-normal);
  z-index: 10;
}

.close-modal:hover {
  transform: rotate(90deg);
}

#modal-content-container {
  padding: 3rem;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-bg);
  color: var(--text-light);
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

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

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

.btn-cookie {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 500;
  transition: background-color var(--transition-normal);
}

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

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}

/* Параллакс эффекты */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Анимации при прокрутке */
[data-delay] {
  animation-delay: calc(var(--delay) * 1ms);
}

/* Адаптивная типографика */
@media screen and (min-width: 768px) {
  html {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 20px;
  }
}

/* Медиа-запросы для адаптивности */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: var(--font-size-4xl);
  }
  
  .section-title {
    font-size: var(--font-size-3xl);
  }
  
  .contact-content,
  .footer-content {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: var(--font-size-3xl);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .success-buttons,
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .contact-card,
  .stat-card,
  .mission-card,
  .enlace-card,
  .gallery-item {
    max-width: 100%;
  }
}