/* ===== VARIABLES ===== */
:root {
  /* Gradientная цветовая схема */
  --primary-color: #FF4B5C;
  --primary-light: #FF7A89;
  --primary-dark: #E03347;
  --secondary-color: #2B50AA;
  --secondary-light: #4570D5;
  --secondary-dark: #1A3578;
  --accent-color: #FFB11B;
  --accent-light: #FFCA62;
  --accent-dark: #E29200;
  
  /* Нейтральные цвета */
  --white: #FFFFFF;
  --light-gray: #F2F2F2;
  --medium-gray: #999999;
  --dark-gray: #333333;
  --black: #121212;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  --gradient-dark: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.7) 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  
  /* Типографика */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Размеры */
  --container-width: 1200px;
  --gutter: 2rem;
  --border-radius: 8px;
  --border-radius-large: 16px;
  
  /* Тени */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--black);
}

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

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  text-transform: uppercase;
}

h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
}

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

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.2rem;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
}

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

section {
  padding: 5rem 0;
  position: relative;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.2rem;
}

/* ===== КНОПКИ ===== */
.btn, button, input[type="submit"] {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  transition: all var(--transition-medium);
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.btn:hover, button:hover, input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active, button:active, input[type="submit"]:active {
  transform: translateY(1px);
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--white);
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
  color: var(--white);
}

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

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

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
  transition: background var(--transition-medium);
}

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

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

.logo a {
  color: var(--primary-color);
  transition: all var(--transition-fast);
}

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

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

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

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

.desktop-menu a {
  position: relative;
  font-weight: 600;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

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

.desktop-menu a:hover:after {
  width: 100%;
}

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform var(--transition-medium);
}

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

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

.mobile-menu li {
  margin-bottom: 1rem;
}

.mobile-menu a {
  display: block;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.5rem 0;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -1px;
  position: relative;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  border-radius: var(--border-radius-large);
  transform: translateY(-20px);
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-out;
}

.hero-content p {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeIn 1s ease-out 0.6s;
  animation-fill-mode: both;
}

/* ===== MISSION SECTION ===== */
.mission {
  background-color: var(--white);
}

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

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

.mission-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.mission-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

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

/* ===== SERVICES SECTION ===== */
.services {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

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

.services .card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services .card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.services .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.services .card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

/* ===== METHODOLOGY SECTION ===== */
.methodology {
  background-color: var(--white);
}

.timeline {
  position: relative;
  margin: 3rem 0;
}

.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 {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-end;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}

.timeline-content {
  width: 45%;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 2rem;
}

/* ===== PROCESS SECTION ===== */
.process {
  background-color: var(--light-gray);
  overflow: hidden;
}

.process-content {
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.process-step:hover {
  transform: translateX(10px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-right: 1.5rem;
  min-width: 60px;
}

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

.progress-indicator {
  margin-top: 1rem;
  height: 8px;
  background-color: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  width: 0;
  transition: width 1s ease;
}

/* ===== INSTRUCTORS SECTION ===== */
.instructors {
  background-color: var(--white);
}

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

.instructors .card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.instructors .card-content {
  padding: 1.5rem;
  text-align: center;
}

.instructor-title {
  font-style: italic;
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

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

.carousel-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.case-study-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case-study-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.case-study-card:hover .card-image img {
  transform: scale(1.1);
}

.case-study-card .card-content {
  padding: 1.5rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.carousel-prev, .carousel-next {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--secondary-color);
  cursor: pointer;
  padding: 0.5rem 1rem;
  margin: 0 1rem;
  transition: color var(--transition-fast);
}

.carousel-prev:hover, .carousel-next:hover {
  color: var(--secondary-dark);
}

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.carousel-indicator.active {
  background-color: var(--primary-color);
}

/* ===== EXTERNAL RESOURCES SECTION ===== */
.external-resources {
  background-color: var(--white);
}

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

.resource-card {
  background: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.resource-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.resource-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.resource-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-right: 1.5rem;
}

.resource-link:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.resource-link:hover:after {
  transform: translate(5px, -50%);
}

/* ===== EVENTS SECTION ===== */
.events {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.events-calendar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.event-card {
  display: flex;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.event-card:hover {
  transform: translateX(10px);
}

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

.event-date .day {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.3rem;
}

.event-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.event-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.event-description {
  margin-bottom: 1rem;
}

.event-details {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 1.2rem;
}

.event-details span {
  font-weight: 700;
  color: var(--dark-gray);
}

/* ===== CLIENTELE SECTION ===== */
.clientele {
  background-color: var(--white);
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.client-logo {
  padding: 1rem;
  transition: transform var(--transition-medium);
}

.client-logo:hover {
  transform: scale(1.1);
}

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

.custom-slider {
  position: relative;
  overflow: hidden;
}

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

.slider-item {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

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

.testimonial-author {
  margin-top: 1rem;
}

.author-name {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.author-position {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.slider-prev, .slider-next {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--secondary-color);
  cursor: pointer;
  padding: 0.5rem 1rem;
  margin: 0 1rem;
  transition: color var(--transition-fast);
}

.slider-prev:hover, .slider-next:hover {
  color: var(--secondary-dark);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

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

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

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.contact-map {
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.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.8rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer h2, .footer h3 {
  color: var(--white);
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

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

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo h2 {
  margin-bottom: 0.5rem;
}

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

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

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

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--primary-light);
}

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

.social-links a {
  color: var(--light-gray);
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

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

.success-content {
  max-width: 600px;
}

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

/* ===== COOKIE NOTICE ===== */
#cookie-notice {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 15px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

#accept-cookies {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 8px 16px;
  margin: 10px;
  cursor: pointer;
  border-radius: 4px;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Apply morphing animation to some elements */
.mission-image, .contact-form-container {
  animation: morphing 15s infinite;
  animation-timing-function: ease-in-out;
}

/* ===== PRIVACY & TERMS PAGES ===== */
.privacy-page, .terms-page {
  padding-top: 100px;
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .timeline:before {
    left: 30px;
  }
  
  .timeline-item {
    justify-content: flex-start;
  }
  
  .timeline-item:nth-child(odd) {
    justify-content: flex-start;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 50px !important;
    margin-right: 0 !important;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    padding: 1rem;
    flex-direction: row;
    justify-content: center;
  }
  
  .event-date .day {
    margin-right: 0.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
}