:root {
  /* Основная монохромная палитра - оттенки синего */
  --primary-color: #0055A4;
  --primary-dark: #003C73;
  --primary-light: #3B7BBE;
  --primary-lighter: #5A94D1;
  --primary-lightest: #E0EAF7;
  
  /* Акцентные цвета */
  --accent-color: #00AEEF;
  --accent-dark: #0091C8;
  --accent-light: #33BFEF;
  
  /* Нейтральные цвета */
  --text-dark: #222222;
  --text-medium: #333333;
  --text-light: #666666;
  --text-white: #FFFFFF;
  
  /* Фоновые цвета */
  --bg-dark: #1A1A1A;
  --bg-medium: #F0F0F0;
  --bg-light: #F8F8F8;
  --bg-white: #FFFFFF;
  
  /* Цвета для теней и оверлеев */
  --shadow-color: rgba(0, 0, 0, 0.1);
  --overlay-dark: rgba(0, 0, 0, 0.7);
  --overlay-medium: rgba(0, 0, 0, 0.5);
  --overlay-light: rgba(0, 0, 0, 0.3);
  
  /* Цвета состояний */
  --success-color: #28A745;
  --error-color: #DC3545;
  --warning-color: #FFC107;
  --info-color: #17A2B8;
  
  /* Размеры контейнеров и брейкпойнты */
  --container-width: 1200px;
  --container-padding: 20px;
  --section-spacing: 80px;
  --card-spacing: 20px;
  
  /* Радиусы скругления */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  
  /* Время переходов */
  --transition-fast: 0.2s;
  --transition-medium: 0.3s;
  --transition-slow: 0.5s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-medium);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 20px;
}

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

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

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

ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

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

/* Секции */
section {
  padding: 60px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Кнопки */
.btn, button, input[type="submit"] {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium) ease;
  border: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--shadow-color);
}

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

.btn-secondary:hover {
  background-color: var(--primary-lightest);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--shadow-color);
}

/* Хедер */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow-color);
  padding: 15px 0;
  transition: all var(--transition-medium) ease;
}

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

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

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

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

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

.main-nav ul li a {
  color: var(--text-medium);
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast) ease;
}

.main-nav ul li a:hover {
  color: var(--primary-color);
}

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

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

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

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  transition: all var(--transition-medium) ease;
}

/* Hero секция */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--overlay-light), var(--overlay-dark));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: var(--text-white);
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Features секция */
.features {
  background-color: var(--bg-light);
}

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

.feature-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

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

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

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

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

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

.feature-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-right: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--text-light);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Methodology секция */
.methodology {
  background-color: var(--bg-white);
}

.methodology-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.methodology-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

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

.methodology-text {
  flex: 1;
}

.methodology-text h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--shadow-color);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  max-width: 100%;
  max-height: 100%;
}

.step h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* External Resources секция */
.external-resources {
  background-color: var(--bg-light);
  padding: 70px 0;
}

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

.resource-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

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

.resource-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 500;
  padding: 8px 15px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium) ease;
}

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

/* Sustainability секция */
.sustainability {
  background-color: var(--bg-white);
}

.sustainability-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.sustainability-text {
  flex: 1;
}

.sustainability-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

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

.sustainability-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--primary-lightest);
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--shadow-color);
}

.stat-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-dark);
  font-weight: 500;
}

/* Media секция */
.media {
  background-color: var(--bg-light);
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.gallery-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  height: 200px;
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px var(--shadow-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.video-container {
  width: 100%;
  max-width: 800px;
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  margin-bottom: 30px;
}

.video-container img {
  width: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-medium) ease, background-color var(--transition-medium) ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--primary-dark);
}

.play-button span {
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 25px solid var(--text-white);
  border-bottom: 15px solid transparent;
}

.video-description {
  text-align: center;
  max-width: 800px;
}

/* Blog секция */
.blog {
  background-color: var(--bg-white);
}

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

.blog-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.blog-date {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 15px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-medium) ease;
}

.read-more:hover {
  border-color: var(--primary-color);
}

.blog-cta {
  text-align: center;
  margin-top: 40px;
}

/* FAQ секция */
.faq {
  background-color: var(--bg-light);
}

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

.faq-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  background-color: var(--bg-white);
}

.faq-question {
  padding: 20px;
  background-color: var(--bg-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary-color);
}

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

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

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease, padding var(--transition-slow) ease;
}

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

/* Events секция */
.events {
  background-color: var(--bg-white);
}

.events-timeline {
  max-width: 800px;
  margin: 0 auto 50px;
}

.event-item {
  display: flex;
  margin-bottom: 30px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.event-date {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
}

.event-date .day {
  font-size: 2rem;
  font-weight: bold;
}

.event-content {
  padding: 20px;
  flex-grow: 1;
}

.event-location {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.event-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 15px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-medium) ease;
}

.event-link:hover {
  border-color: var(--primary-color);
}

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

/* Careers секция */
.careers {
  background-color: var(--bg-light);
}

.careers-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.careers-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

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

.careers-text {
  flex: 1;
}

.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.job-card {
  padding: 20px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
  text-align: center;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.job-card h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.job-location, .job-type {
  color: var(--text-light);
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.job-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 15px;
  padding: 8px 15px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium) ease;
}

.job-link:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon img {
  max-width: 100%;
}

.info-text h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.info-map {
  margin-top: 20px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.contact-form {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-lightest);
}

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

.form-checkbox input {
  width: auto;
  margin-right: 10px;
}

.form-checkbox label {
  margin: 0;
  font-size: 0.9rem;
}

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

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

.footer-logo {
  flex-basis: 100%;
  max-width: 250px;
  margin-bottom: 30px;
}

.footer-logo p {
  margin-top: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-grow: 1;
  gap: 20px;
}

.link-column {
  flex: 1;
  min-width: 180px;
}

.link-column h4 {
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.link-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.link-column ul li {
  margin-bottom: 10px;
}

.link-column ul li a {
  color: var(--text-white);
  opacity: 0.8;
  transition: opacity var(--transition-fast) ease;
}

.link-column ul li a:hover {
  opacity: 1;
  color: var(--primary-lighter);
}

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

.social-links a {
  color: var(--text-white);
  margin-bottom: 10px;
  opacity: 0.8;
  transition: opacity var(--transition-fast) ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

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

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

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

.success-content {
  max-width: 600px;
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

/* Privacy и Terms страницы */
.page-content {
  padding-top: 100px;
  padding-bottom: 60px;
}

.page-content .container {
  max-width: 800px;
}

.page-title {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.page-content h2 {
  color: var(--primary-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-content p {
  margin-bottom: 20px;
}

.page-content ul {
  margin-bottom: 20px;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow) ease, transform var(--transition-slow) ease;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax Effect */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Cookie Consent */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: none;
}

#cookie-consent p {
  margin: 0 0 10px;
}

#accept-cookies {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 15px;
  margin: 10px;
  cursor: pointer;
  border-radius: var(--border-radius-md);
  transition: background-color var(--transition-fast) ease;
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

#cookie-consent a {
  color: white;
  text-decoration: underline;
  margin-left: 10px;
}

/* Media Queries */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .methodology-content,
  .sustainability-content,
  .careers-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--bg-white);
    padding: 20px;
    transition: left var(--transition-medium) ease;
    overflow-y: auto;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav ul li {
    margin: 0 0 15px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo {
    margin-bottom: 30px;
  }
  
  .footer-links {
    width: 100%;
  }
  
  .link-column {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .card-content,
  .step,
  .event-content {
    padding: 15px;
  }
}