:root {
  /* Пастельная цветовая схема */
  --primary-color: #94c2bd;
  --primary-dark: #7ba8a4;
  --secondary-color: #f2c9db;
  --secondary-dark: #e0b7c9;
  --accent-color: #f6c667;
  --accent-dark: #e0b44f;
  --neutral-light: #f9f7f7;
  --neutral-medium: #e8e8e8;
  --neutral-dark: #555555;
  --text-color: #333333;
  --text-light: #ffffff;
  --text-muted: #777777;
  --success-color: #9ed8a4;
  --warning-color: #f8d76e;
  --error-color: #f79d9d;
  
  /* Тени и эффекты */
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  --button-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  
  /* Скругления */
  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 20px;
  --radius-full: 999px;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Размеры */
  --container-width: 1200px;
  --header-height: 80px;
  --section-spacing: 100px;
  --card-spacing: 24px;
  
  /* Z-index */
  --z-header: 1000;
  --z-modal: 2000;
}

/* ====== RESET & BASE STYLES ====== */
* {
  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: var(--neutral-light);
  overflow-x: hidden;
}

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

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

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

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 {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

/* ====== UTILITIES ====== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* ====== BUTTONS ====== */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-medium);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--button-shadow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before, 
button::before, 
input[type='submit']::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  z-index: -1;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow);
}

.btn:hover::before, 
button:hover::before, 
input[type='submit']:hover::before {
  transform: translateY(0);
}

.btn:active, 
button:active, 
input[type='submit']:active {
  transform: translateY(0);
  box-shadow: var(--button-shadow);
}

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

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

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

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

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* ====== HEADER & NAVIGATION ====== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  z-index: var(--z-header);
  transition: all var(--transition-medium);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

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

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--text-color);
  font-weight: 700;
}

.logo span {
  color: var(--primary-color);
}

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

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

.desktop-nav a {
  color: var(--text-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  transition: color var(--transition-fast);
}

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

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

.desktop-nav 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(--text-color);
  border-radius: var(--radius-full);
  transition: all var(--transition-medium);
}

.mobile-nav {
  display: none;
  background-color: var(--neutral-light);
  padding: 20px;
}

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

.mobile-nav li {
  margin-bottom: 15px;
}

.mobile-nav a {
  color: var(--text-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

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

/* ====== HERO SECTION ====== */
.hero {
  position: relative;
  padding: 180px 0 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

/* ====== SERVICES SECTION ====== */
.services-section {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-light);
}

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

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

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

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

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

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

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

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 12px;
}

.card-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

/* ====== PORTFOLIO SECTION ====== */
.portfolio-section {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-medium);
  position: relative;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

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

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

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

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

.item-content {
  padding: 25px;
  flex-grow: 1;
  width: 100%;
  text-align: center;
}

.item-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.tags span {
  background-color: var(--primary-color);
  color: white;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* ====== SUSTAINABILITY SECTION ====== */
.sustainability-section {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-light);
}

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

.image-side {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-side img {
  border-radius: var(--radius-medium);
  box-shadow: var(--card-shadow);
  max-width: 100%;
  height: auto;
}

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

.accordion {
  width: 100%;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.accordion-header {
  padding: 20px 25px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.accordion-header:hover {
  background-color: var(--neutral-medium);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

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

.accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.accordion-item.active .accordion-content {
  padding: 0 25px 25px;
  max-height: 500px;
}

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

/* ====== PARTNERS SECTION ====== */
.partners-section {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-medium);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.partner-card {
  background-color: white;
  border-radius: var(--radius-medium);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.partner-card .image-container {
  width: 130px;
  height: 130px;
  margin-bottom: 20px;
}

.partner-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

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

/* ====== RESOURCES SECTION ====== */
.resources-section {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-light);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

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

.resource-card .card-image {
  width: 100%;
  height: 180px;
}

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

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

.resource-card p {
  margin-bottom: 20px;
}

/* ====== STORIES SECTION ====== */
.stories-section {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-medium);
}

.stories-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.story-card {
  background-color: white;
  border-radius: var(--radius-medium);
  padding: 30px;
  box-shadow: var(--card-shadow);
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.story-card .image-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid var(--primary-color);
}

.story-card .image-container img {
  border-radius: 50%;
}

.story-content .quote {
  font-style: italic;
  position: relative;
  padding: 0 20px;
  margin-bottom: 20px;
}

.story-content .quote::before,
.story-content .quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
}

.story-content .quote::before {
  top: -20px;
  left: 0;
}

.story-content .quote::after {
  bottom: -40px;
  right: 0;
}

.story-content .author {
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 5px;
}

.rating {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* ====== BLOG SECTION ====== */
.blog-section {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-light);
}

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

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

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

.blog-card .card-image {
  width: 100%;
  height: 200px;
}

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

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

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

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

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

.read-more:hover::after {
  width: 100%;
}

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

/* ====== INSTRUCTORS SECTION ====== */
.instructors-section {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-medium);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

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

.instructor-card .image-container {
  width: 100%;
  height: 280px;
}

.instructor-card h3 {
  margin-top: 20px;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.instructor-card .position {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.instructor-card .bio {
  padding: 0 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.social-link {
  color: var(--text-color);
  transition: color var(--transition-fast);
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

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

/* ====== CAREERS SECTION ====== */
.careers-section {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-light);
}

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

.careers-intro {
  margin-bottom: 30px;
}

/* ====== CONTACT SECTION ====== */
.contact-section {
  padding: var(--section-spacing) 0;
  background-color: var(--neutral-medium);
}

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

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

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

.info-item h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 10px;
}

.info-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

.info-item p {
  margin-bottom: 10px;
}

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

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 10px;
}

.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

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

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

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--neutral-medium);
  border-radius: var(--radius-medium);
  font-family: 'Merriweather', serif;
  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(148, 194, 189, 0.2);
}

/* ====== FOOTER ====== */
.footer {
  background-color: #2d3142;
  color: var(--text-light);
  padding: 80px 0 30px;
}

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

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

.footer-logo h2 {
  color: var(--text-light);
  font-size: 2rem;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.link-group {
  min-width: 180px;
}

.link-group h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.link-group h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

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

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

.link-group a {
  color: var(--neutral-medium);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.link-group a:hover {
  color: var(--primary-color);
}

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

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

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

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

.success-content h1 {
  margin-bottom: 20px;
}

.success-content p {
  margin-bottom: 30px;
}

/* ====== PRIVACY & TERMS PAGES ====== */
.page-content {
  padding-top: 100px;
  padding-bottom: 80px;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 80px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .sustainability-content,
  .careers-content {
    flex-direction: column;
  }
  
  .image-side {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --section-spacing: 60px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --section-spacing: 50px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 130px 0 70px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .story-card {
    padding: 20px;
  }
}

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Add animations to elements */
.hero-content, .section-title, .section-subtitle {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.card, .gallery-item, .blog-card, .story-card, .instructor-card, .partner-card, .resource-card {
  animation: fadeIn 0.8s ease forwards;
}

.mobile-menu-toggle{
  display: none;
}