/* Основные переменные и сброс стилей */
:root {
  /* Основная цветовая палитра (пастельная) */
  --primary-color: #6a8caf;
  --primary-dark: #4a6a8f;
  --primary-light: #8baecf;
  --secondary-color: #f0b67f;
  --secondary-dark: #d39b67;
  --secondary-light: #ffd6a5;
  --accent-color: #d8737f;
  --accent-dark: #b85f6b;
  --accent-light: #f09da9;
  
  /* Нейтральные цвета */
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #ffffff;
  --background-light: #f8f9fa;
  --background-dark: #202124;
  
  /* Гласморфизм */
  --glass-background: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --glass-blur: 10px;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  --gradient-dark-overlay: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  
  /* Тени */
  --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 10px rgba(0, 0, 0, 0.15);
  --shadow-large: 0 8px 30px rgba(0, 0, 0, 0.2);
  
  /* Скругления */
  --border-radius-small: 6px;
  --border-radius-medium: 12px;
  --border-radius-large: 20px;
  
  /* Анимации */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры контейнера */
  --container-padding: 2rem;
  --section-spacing: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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 {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

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

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

/* Гласморфизм */
.glassmorphism {
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 8px 32px var(--glass-shadow);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.glassmorphism:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-small);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  outline: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(106, 140, 175, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--text-light);
  box-shadow: 0 6px 20px rgba(106, 140, 175, 0.4);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(240, 182, 127, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
  color: var(--text-dark);
  box-shadow: 0 6px 20px rgba(240, 182, 127, 0.4);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Навигация */
.glassmorphism-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background var(--transition-medium);
}

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

.logo {
  z-index: 1001;
}

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

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

.desktop-nav ul li {
  margin-left: 1.5rem;
}

.desktop-nav ul li a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
}

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

.desktop-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;
  z-index: 1001;
}

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

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding-top: 100px;
  transition: transform var(--transition-medium);
  transform: translateY(-100%);
}

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

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav ul li {
  margin-bottom: 1.5rem;
}

.mobile-nav ul li a {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

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

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

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

.hero-content h1, .hero-content h2, .hero-content p {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

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

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

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
}

/* History Section */
.history-section {
  background-color: var(--background-light);
}

.history-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.history-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-date {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  z-index: 1;
}

.timeline-content {
  width: 45%;
  padding: 2rem;
  margin-top: 2rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-content h3 {
  margin-top: 0;
}

.timeline-content img {
  margin: 1.5rem auto;
  border-radius: var(--border-radius-small);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}

/* Pricing/Estaciones Section */
.pricing-section {
  background-color: var(--background-light);
}

.stations-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.station-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.station-image {
  overflow: hidden;
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.station-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.station-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.station-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.station-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.station-price {
  margin-top: auto;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.station-price span {
  display: block;
  color: var(--text-medium);
}

.station-price h4 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin: 0.5rem 0;
}

.map-section {
  margin-top: 3rem;
  text-align: center;
}

.map-container {
  margin: 2rem 0;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.map-container img {
  width: 100%;
  display: block;
}

.map-cta {
  margin-top: 2rem;
}

/* Awards/Servicios Section */
.awards-section {
  position: relative;
}

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

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

.awards-section .section-title,
.awards-section .section-description {
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.service-card {
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-medium);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  overflow: hidden;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1.5rem;
}

/* Resources Section */
.resources-section {
  background-color: var(--background-light);
}

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

.resource-card {
  padding: 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-content h3 {
  margin-bottom: 1rem;
}

.resource-content p {
  margin-bottom: 1.5rem;
}

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

.partners-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.partner-card {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card img {
  width: 200px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.partner-card h3 {
  margin-bottom: 1rem;
}

.partners-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 300px;
  margin-bottom: 1rem;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Research Section */
.research-section {
  background-color: var(--background-light);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.research-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.research-image {
  height: 250px;
  overflow: hidden;
}

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

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

.research-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.research-content h3 {
  margin-bottom: 1rem;
}

.research-content p {
  margin-bottom: 1.5rem;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--background-light);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  background: none;
  border: none;
  padding: 0.5rem 1.5rem;
  margin: 0 0.5rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: 30px;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(106, 140, 175, 0.3);
}

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

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  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: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--text-light);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-medium);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.gallery-caption p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.gallery-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.nav-btn {
  background: none;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin: 0 1rem;
}

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

.gallery-dots {
  display: flex;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-medium);
  margin: 0 5px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active, .dot:hover {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Workshops Section */
.workshops-section {
  background-color: var(--background-light);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.workshop-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.workshop-image {
  height: 200px;
  overflow: hidden;
}

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

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

.workshop-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.workshop-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.workshops-calendar {
  margin-top: 4rem;
}

.workshops-calendar h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.calendar-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.calendar-event {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.calendar-event:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.event-date {
  min-width: 80px;
  text-align: center;
  margin-right: 1.5rem;
}

.event-day {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.event-month {
  display: block;
  font-weight: 600;
  color: var(--text-medium);
}

.event-details h4 {
  margin-bottom: 0.5rem;
}

.event-details p {
  margin-bottom: 0;
  color: var(--text-medium);
}

/* Portfolio Section */
.portfolio-section {
  background-color: var(--background-light);
}

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

.portfolio-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio-image {
  height: 250px;
  overflow: hidden;
}

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

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

.portfolio-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-content h3 {
  margin-bottom: 1rem;
}

.portfolio-content p {
  margin-bottom: 1.5rem;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  gap: 1rem;
}

.portfolio-meta span {
  background: rgba(106, 140, 175, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.875rem;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: var(--background-light);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
}

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

.info-icon {
  min-width: 40px;
  height: 40px;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-content h4 {
  margin-bottom: 0.5rem;
}

.info-content p {
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-icons a {
  padding: 0.5rem 1rem;
  background: rgba(106, 140, 175, 0.1);
  border-radius: 30px;
  font-size: 0.875rem;
  color: var(--primary-color);
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

.contact-form {
  padding: 2rem;
}

.contact-form h3 {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-small);
  background-color: rgba(255, 255, 255, 0.8);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

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

.form-checkbox input {
  width: auto;
  margin-right: 0.75rem;
}

.map-container {
  padding: 2rem;
  margin-top: 3rem;
}

.map-container h3 {
  margin-bottom: 2rem;
  text-align: center;
}

.map-iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  margin-bottom: 2rem;
}

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

/* Footer */
.footer-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.footer-top {
  padding: 5rem 0 3rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-description {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-social a:hover {
  opacity: 1;
}

.footer-column h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

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

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

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

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

.footer-contact p {
  margin-bottom: 0.75rem;
}

.footer-contact strong {
  color: var(--primary-light);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  margin-bottom: 0;
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-light);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-bottom-links a:hover {
  opacity: 1;
}

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

.success-container {
  max-width: 600px;
  padding: 3rem;
}

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

.success-title {
  margin-bottom: 1.5rem;
}

.success-message {
  margin-bottom: 2rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 120px;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.page-content h1 {
  margin-bottom: 2rem;
}

.page-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content ul {
  margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .timeline-content {
    width: 100%;
    margin-left: 0 !important;
  }
  
  .history-timeline:before {
    left: 20px;
  }
  
  .timeline-date {
    left: 20px;
    transform: translateX(0);
  }
  
  .timeline-content {
    padding-left: 60px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .partners-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    margin-bottom: 2rem;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .gallery-filter {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    margin-bottom: 0.5rem;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Utilities */
.text-center {
  text-align: center;
}

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

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

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.text-secondary {
  color: var(--secondary-color);
}

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

.text-light {
  color: var(--text-light);
}

.text-dark {
  color: var(--text-dark);
}

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

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

.bg-accent {
  background-color: var(--accent-color);
}

.bg-light {
  background-color: var(--background-light);
}

.bg-dark {
  background-color: var(--background-dark);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}