:root {
  /* Неоморфная раздельно-дополнительная цветовая схема */
  --primary-color: #3273dc; /* Основной синий */
  --primary-dark: #2a61b8; /* Тёмный синий для эффекта нажатия */
  --primary-light: #4a89f0; /* Светлый синий для внутренних теней */
  
  --complementary-color: #dc7a32; /* Дополнительный оранжевый */
  --complementary-dark: #b86428; /* Тёмный оранжевый */
  --complementary-light: #f08e4a; /* Светлый оранжевый */
  
  --accent1: #32dcb0; /* Бирюзовый акцент */
  --accent2: #dc3273; /* Малиновый акцент */
  
  --light-bg: #f0f2f5; /* Светлый фон для неоморфных элементов */
  --light-shadow: rgba(255, 255, 255, 0.8); /* Светлая тень */
  --dark-shadow: rgba(0, 0, 0, 0.1); /* Тёмная тень */
  
  --text-dark: #333333; /* Тёмный текст */
  --text-light: #ffffff; /* Светлый текст */
  --text-muted: #6c757d; /* Приглушенный текст */
  
  --border-radius: 15px; /* Скругление углов */
  --neomorphic-shadow: 8px 8px 16px var(--dark-shadow), -8px -8px 16px var(--light-shadow); /* Неоморфная тень */
  --neomorphic-inset: inset 6px 6px 12px var(--dark-shadow), inset -6px -6px 12px var(--light-shadow); /* Неоморфная внутренняя тень */
  
  --transition-speed: 0.3s; /* Скорость перехода анимаций */
}

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

body {
  font-family: 'Merriweather', serif;
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.6;
  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-dark);
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

.section {
  padding: 5rem 1.5rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Неоморфные стили для карточек и элементов */
.neomorphic {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  padding: 2rem;
  transition: all var(--transition-speed) ease;
}

.neomorphic:hover {
  box-shadow: 6px 6px 12px var(--dark-shadow), -6px -6px 12px var(--light-shadow);
  transform: translateY(-3px);
}

.neomorphic-inset {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-inset);
  padding: 2rem;
}

/* Стили для кнопок */
.button {
  display: flex;
  max-width: 100%;
  width: max-content;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: var(--light-bg);
  color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  cursor: pointer;
  box-shadow: var(--neomorphic-shadow);
  transition: all var(--transition-speed) ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: pre-wrap;
}

.button:hover {
  box-shadow: 6px 6px 12px var(--dark-shadow), -6px -6px 12px var(--light-shadow);
  transform: translateY(-3px);
  text-decoration: none;
}

.button:active {
  box-shadow: var(--neomorphic-inset);
  transform: translateY(0);
}

.button.is-primary {
  background: var(--primary-color);
  color: var(--text-light);
}

.button.is-primary:hover {
  background: var(--primary-dark);
}

.button.is-light {
  background: var(--light-bg);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.button.is-light:hover {
  background: var(--primary-light);
  color: var(--text-light);
}

.button.is-outlined {
  background: transparent;
  border: 2px solid var(--text-light);
}

.button.is-outlined:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button.is-large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

/* Заголовки секций */
.title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.title.is-2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.title.is-3 {
  font-size: 2rem;
}

.title.is-4 {
  font-size: 1.5rem;
}

.title.is-5 {
  font-size: 1.25rem;
}

.has-text-centered {
  text-align: center;
}

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

/* Хедер */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--light-bg);
  box-shadow: 0 2px 10px var(--dark-shadow);
  z-index: 1000;
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand h1 {
  margin-bottom: 0;
  color: var(--primary-color);
}

.navbar-menu {
  display: flex;
}

.navbar-end {
  display: flex;
  margin-left: auto;
}

.navbar-item {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

.navbar-item:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-burger {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-burger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all var(--transition-speed) ease;
}

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

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

.contact-form .select select {
  line-height: 1.1;
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero h1, .hero h2, .hero p {
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .title.is-1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero .subtitle.is-3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.hero .buttons {
  margin-top: 2rem;
}

/* Секция Vision */
.vision-section {
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.vision-card {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  padding: 2rem;
  transition: all var(--transition-speed) ease;
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 20px var(--dark-shadow), -10px -10px 20px var(--light-shadow);
}

.vision-card-content {
  display: flex;
  flex-direction: column;
}

.vision-values {
  margin-top: 3rem;
}

.value-card {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all var(--transition-speed) ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 12px var(--dark-shadow), -6px -6px 12px var(--light-shadow);
}

.image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

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

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

/* Секция Services */
.services-section {
  background-color: #fff;
  position: relative;
}

.service-card {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 20px var(--dark-shadow), -10px -10px 20px var(--light-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-speed) ease;
}

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

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

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

.card-content p {
  margin-bottom: 0;
}

/* Секция Process */
.process-section {
  background-color: var(--light-bg);
  position: relative;
}

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

.process-timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50px;
  margin-left: -2px;
}

.process-step {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
}

.process-icon {
  position: relative;
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--light-bg), 0 0 0 8px var(--primary-color);
}

.process-content {
  margin-left: 2rem;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--neomorphic-shadow);
  width: calc(100% - 80px);
  transition: all var(--transition-speed) ease;
}

.process-content:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 16px var(--dark-shadow), -8px -8px 16px var(--light-shadow);
}

/* Секция Awards */
.awards-section {
  background-color: #fff;
  position: relative;
}

.award-card {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: all var(--transition-speed) ease;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 20px var(--dark-shadow), -10px -10px 20px var(--light-shadow);
}

.award-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: var(--neomorphic-shadow);
}

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

/* Секция Community */
.community-section {
  background-color: var(--light-bg);
  position: relative;
}

.community-content {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  padding: 2rem;
  transition: all var(--transition-speed) ease;
}

.community-content:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 20px var(--dark-shadow), -10px -10px 20px var(--light-shadow);
}

.external-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.resource-link {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all var(--transition-speed) ease;
}

.resource-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--text-light);
}

.community-events {
  margin-top: 3rem;
}

.event-card {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  padding: 1.5rem;
  height: 100%;
  transition: all var(--transition-speed) ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 16px var(--dark-shadow), -8px -8px 16px var(--light-shadow);
}

.event-date {
  color: var(--complementary-color);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Секция Success Stories */
.success-stories-section {
  background-color: #fff;
  position: relative;
}

.story-card {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 20px var(--dark-shadow), -10px -10px 20px var(--light-shadow);
}

/* Секция Gallery */
.gallery-section {
  background-color: var(--light-bg);
  position: relative;
}

.gallery-item {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  overflow: hidden;
  height: 200px;
  transition: all var(--transition-speed) ease;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 10px 10px 20px var(--dark-shadow), -10px -10px 20px var(--light-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Секция Team */
.team-section {
  background-color: #fff;
  position: relative;
}

.team-card {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 20px var(--dark-shadow), -10px -10px 20px var(--light-shadow);
}

.team-card .subtitle {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

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

.faq-accordion {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-speed) ease;
}

.faq-question h3 {
  margin-bottom: 0;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: all var(--transition-speed) ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-item:hover .faq-question {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Секция Contact */
.contact-section {
  background-color: #fff;
  position: relative;
}

.contact-info {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  padding: 2rem;
  height: 100%;
}

.contact-map {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
}

.contact-form-container {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  padding: 2rem;
  height: 100%;
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-form .label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-inset);
  transition: all var(--transition-speed) ease;
  font-family: 'Merriweather', serif;
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  outline: none;
  box-shadow: inset 4px 4px 8px var(--dark-shadow), inset -4px -4px 8px var(--light-shadow), 0 0 0 3px rgba(50, 115, 220, 0.2);
}

.contact-form .select {
  position: relative;
  display: block;
  width: 100%;
}

.contact-form .select::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--primary-color);
  pointer-events: none;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer .title,
.footer h4 {
  color: var(--text-light);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-speed) ease;
}

.footer-links a:hover {
  color: var(--text-light);
  text-decoration: none;
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 1rem;
  transition: all var(--transition-speed) ease;
}

.social-links a:hover {
  color: var(--text-light);
  text-decoration: none;
  transform: translateY(-2px);
}

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

.success-content {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  padding: 3rem;
  max-width: 600px;
  animation: successPopIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes successPopIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Cookie Consent */
#cookie-consent {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999;
}

#accept-cookies {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: all var(--transition-speed) ease;
}

#accept-cookies:hover {
  background-color: #3e8e41;
  transform: translateY(-2px);
}

/* Страницы Privacy и Terms */
.privacy-page,
.terms-page {
  padding-top: 120px;
  padding-bottom: 4rem;
}

.privacy-content,
.terms-content {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--neomorphic-shadow);
  padding: 2rem;
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

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

/* Адаптивный дизайн */
@media (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--light-bg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    flex-direction: column;
  }
  
  .navbar-menu.is-active {
    display: block;
  }

  .header {
    position: relative;
  }
  body {
    padding-top: 0 !important;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .hero .title.is-1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.5rem;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .process-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .process-content {
    width: calc(100% - 60px);
  }
}

@media screen and (max-width: 900px) and (min-width: 767.9px) {
    .column.is-3, .column.is-3-tablet {
        flex: none;
        width: 50% !important;
    }
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 1rem;
  }

  .privacy-content h1 {
    font-size: 28px;
  }
  .privacy-page, .terms-page {
    padding-top: 80px;
  }

  .terms-container,
  .privacy-content {
    padding: 16px;
  }
  
  .columns {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  
  .column {
    padding: 0.5rem;
  }
  
  .hero .title.is-1 {
    font-size: 2rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.25rem;
  }
  
  .title.is-2 {
    font-size: 2rem;
  }
  
  .process-content {
    padding: 1rem;
  }
  
  .contact-form-container,
  .contact-info {
    margin-bottom: 2rem;
  }
}

/* Дополнительные стили */
.mb-6 {
  margin-bottom: 3rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 2.5rem !important;
}

.mt-5 {
  margin-top: 2.5rem !important;
}

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

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

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

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

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

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

.is-multiline {
  flex-wrap: wrap;
}

.is-centered {
  justify-content: center;
}

.is-vcentered {
  align-items: center;
}

.is-fullwidth {
  width: 100%;
}

.content {
  line-height: 1.8;
}

.content.is-size-5 {
  font-size: 1.25rem;
}

.subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
}

.subtitle.is-3 {
  font-size: 1.75rem;
}

/* Дополнительные анимации для AOS */
[data-aos="fade-up"] {
  transform: translateY(50px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos="fade-left"] {
  transform: translateX(50px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos="flip-left"] {
  transform: perspective(2500px) rotateY(-15deg);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="flip-left"].aos-animate {
  transform: perspective(2500px) rotateY(0);
  opacity: 1;
}