:root {
  /* Основная цветовая палитра */
  --primary-color: #2c3e50;
  --secondary-color: #34495e;
  --accent-color: #3498db;
  --accent-color-hover: #2980b9;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333333;
  --text-light: #ffffff;
  --text-muted: #7f8c8d;
  --border-color: #dcdde1;
  
  /* Градиенты и тени */
  --gradient-primary: linear-gradient(135deg, #2c3e50, #3498db);
  --gradient-secondary: linear-gradient(135deg, #34495e, #2c3e50);
  --gradient-accent: linear-gradient(135deg, #3498db, #2980b9);
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  --btn-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  --text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  
  /* Размеры и отступы */
  --container-width: 1200px;
  --section-spacing: 80px;
  --card-spacing: 30px;
  --content-spacing: 20px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --header-height: 80px;
  
  /* Анимации */
  --transition-speed: 0.3s;
  --transition-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--dark-color);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-function);
}

a:hover {
  color: var(--accent-color-hover);
}

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

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-function);
  border: none;
  outline: none;
  box-shadow: var(--btn-shadow);
  font-size: 0.9rem;
}

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

.btn-primary:hover {
  background: var(--gradient-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  color: var(--text-light);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  color: var(--text-light);
}

.btn-tertiary {
  background: var(--light-color);
  color: var(--primary-color);
  box-shadow: none;
}

.btn-tertiary:hover {
  background: var(--border-color);
  transform: translateY(-2px);
}

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

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

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

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

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

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

.nav-menu ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-speed) var(--transition-function);
}

.nav-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width var(--transition-speed) var(--transition-function);
}

.nav-menu ul li a:hover {
  color: var(--accent-color);
}

.nav-menu 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;
  width: 100%;
  height: 3px;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: all var(--transition-speed) var(--transition-function);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  overflow: hidden;
}

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

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

.hero-content h1, .hero-content p {
  color: var(--text-light);
  text-shadow: var(--text-shadow);
}

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

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 2rem;
}

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

.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 5px;
  text-shadow: var(--text-shadow);
}

.stat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services-section {
  padding: var(--section-spacing) 0;
  background-color: #f9f9f9;
}

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

.card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed) var(--transition-function), box-shadow var(--transition-speed) var(--transition-function);
}

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

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

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

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

.progress-indicator {
  margin-top: auto;
  width: 100%;
}

.progress-bar {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--gradient-accent);
  border-radius: 3px;
  transition: width 1.5s ease-in-out;
}

.progress-indicator span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* About Section */
.about-section {
  padding: var(--section-spacing) 0;
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--transition-function);
}

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

.about-text {
  flex: 1;
}

.about-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.about-text ul {
  list-style: none;
}

.about-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.about-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Features Section */
.features-section {
  padding: var(--section-spacing) 0;
  background: var(--light-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--card-spacing);
}

.feature-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform var(--transition-speed) var(--transition-function);
}

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

.feature-icon {
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-color);
  margin-bottom: 20px;
}

.feature-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.feature-item h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

/* Insights Section */
.insights-section {
  padding: var(--section-spacing) 0;
}

.insights-slider {
  position: relative;
}

.slider-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 30px;
  padding-bottom: 30px;
  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
}

.slider-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.slide {
  flex: 0 0 auto;
  width: calc(33.333% - 20px);
  scroll-snap-align: start;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.prev-btn, .next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-function);
  border: none;
  font-size: 1.2rem;
}

.prev-btn:hover, .next-btn:hover {
  background: var(--accent-color);
  color: white;
}

/* Resources Section */
.resources-section {
  padding: var(--section-spacing) 0;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

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

.resource-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.resource-item h3 {
  margin-bottom: 20px;
  color: var(--dark-color);
  text-align: center;
}

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

.resource-item ul li {
  margin-bottom: 12px;
}

.resource-item ul li a {
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-speed) var(--transition-function);
}

.resource-item ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

/* Accolades Section */
.accolades-section {
  padding: var(--section-spacing) 0;
}

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

.accolade-item {
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  background: #fff;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed) var(--transition-function);
}

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

.accolade-item img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--light-color);
}

.accolade-item h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

/* Webinars Section */
.webinars-section {
  padding: var(--section-spacing) 0;
  background: #f9f9f9;
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--card-spacing);
}

.webinar-date {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: var(--light-color);
  color: var(--dark-color);
  font-size: 0.9rem;
  border-radius: 20px;
}

/* Events Section */
.events-section {
  padding: var(--section-spacing) 0;
}

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

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

.event-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
}

.event-date {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  z-index: 1;
  box-shadow: var(--card-shadow);
}

.event-date .month {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.event-date .day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-content {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  margin-left: 20px;
  box-shadow: var(--card-shadow);
}

.event-content h3 {
  margin-bottom: 10px;
  color: var(--dark-color);
}

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

/* Partners Section */
.partners-section {
  padding: var(--section-spacing) 0;
  background: var(--light-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--card-spacing);
}

.partner-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed) var(--transition-function);
}

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

.partner-item img {
  width: 180px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.partner-item h3 {
  margin-bottom: 10px;
  color: var(--dark-color);
  font-size: 1.2rem;
}

.partner-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  padding: var(--section-spacing) 0;
}

.contact-content {
  display: flex;
  gap: 50px;
}

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

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  transition: border-color var(--transition-speed) var(--transition-function);
}

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

.contact-info {
  flex: 1;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  margin-bottom: 10px;
  color: var(--dark-color);
}

.map-container {
  width: 100%;
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

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

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

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

.footer-logo {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
}

.footer-logo img {
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-speed) var(--transition-function);
}

.footer-column ul li a:hover {
  color: var(--text-light);
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-speed) var(--transition-function);
}

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

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

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

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: modalFadeIn 0.3s forwards;
}

@keyframes modalFadeIn {
  from {
    /*opacity: 0;*/
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-speed) var(--transition-function);
}

.close-modal:hover {
  color: var(--danger-color);
}

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

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

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

.btn-cookie {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background var(--transition-speed) var(--transition-function);
}

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

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
}

.success-content {
  max-width: 700px;
  background: white;
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

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

/* Terms & Privacy Pages */
.page-content {
  padding: 100px 0 60px;
}

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

.page-content h1 {
  margin-bottom: 40px;
}

.page-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

@keyframes fadeIn {
  from {
    /*opacity: 0;*/
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  /*opacity: 0;*/
}

.fade-in {
  /*opacity: 0;*/
}

.fade-in-up.active {
  animation: fadeInUp 0.8s forwards;
}

.fade-in.active {
  animation: fadeIn 1s forwards;
}

/* Responsive styles */
@media (max-width: 1200px) {
  :root {
    --section-spacing: 70px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .slide {
    width: calc(50% - 15px);
  }
}

@media (max-width: 992px) {
  :root {
    --section-spacing: 60px;
    --header-height: 70px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image, .about-text {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-container, .contact-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .contact-info {
    margin-top: 40px;
  }
  
  .slide {
    width: calc(100% - 15px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 50px;
    --header-height: 60px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    /*opacity: 0;*/
    visibility: hidden;
    transition: all var(--transition-speed) var(--transition-function);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu ul {
    flex-direction: column;
  }
  
  .nav-menu ul li {
    margin: 0 0 15px 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .footer-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .events-timeline::before {
    left: 20px;
  }
  
  .event-item {
    flex-direction: column;
  }
  
  .event-date {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  
  .event-content {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  :root {
    --section-spacing: 40px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-right: 0;
    margin-bottom: 15px;
  }
}