:root {
  /* Основная цветовая палитра */
  --primary: #1e88e5;
  --primary-dark: #0d47a1;
  --primary-light: #64b5f6;
  --secondary: #ff8a65;
  --secondary-dark: #e64a19;
  --secondary-light: #ffab91;
  --accent: #7e57c2;
  --accent-dark: #4527a0;
  --accent-light: #b39ddb;
  
  /* Нейтральные цвета */
  --background: #ffffff;
  --background-alt: #f5f7fa;
  --foreground: #333333;
  --foreground-light: #666666;
  --foreground-lighter: #999999;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--accent));
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  
  /* Тени */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Закругления */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Анимации */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры контейнеров */
  --container-padding: 1.5rem;
  
  /* Шрифты */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
}

/* Основные стили */
body {
  font-family: var(--font-body);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--background);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--foreground);
}

p {
  margin-bottom: 1.5rem;
}

.container {
  padding: 0 var(--container-padding);
}

/* Навигация */
.navbar {
  background-color: var(--background);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
  transition: all var(--transition-normal);
}

.navbar.is-fixed-top {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.85);
}

.navbar-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary);
  background-color: transparent !important;
}

.navbar-brand .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  padding: 0.5rem 0;
}

.navbar-burger {
  color: var(--foreground);
}

.navbar-burger:hover {
  background-color: transparent;
}

/* Кнопки */
.button {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.button.is-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.is-light {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border-color: transparent;
}

.button.is-light:hover {
  background-color: white;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.is-rounded {
  border-radius: 50px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.button.is-outlined {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.button.is-outlined:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.animated-button {
  position: relative;
  overflow: hidden;
}

.animated-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.8s;
  z-index: -1;
}

.animated-button:hover:before {
  left: 100%;
}

/* Hero секция */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

.hero-body {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Vision секция */
.vision-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.vision-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

/* Projects/Courses секция */
.projects-section {
  position: relative;
  padding: 5rem 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.projects-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 0;
}

.projects-section .container {
  position: relative;
  z-index: 1;
}

.course-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  background-color: white;
}

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

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

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

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

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

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

.course-topics {
  margin-top: 1rem;
}

.course-topics ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.course-topics li {
  margin-bottom: 0.5rem;
}

.tag.is-info {
  background-color: var(--primary-light);
  color: white;
}

.tag.is-success {
  background-color: #4caf50;
  color: white;
}

/* Sustainability секция */
.sustainability-section {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.sustainability-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

.sustainability-stats {
  margin-top: 3rem;
}

.stat-item {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background-color: white;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

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

.icon-wrapper {
  display: inline-block;
  margin-bottom: 1rem;
}

.stat-item .title {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--foreground-light);
}

/* Resources секция */
.resources-section {
  position: relative;
  padding: 5rem 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.resources-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 0;
}

.resources-section .container {
  position: relative;
  z-index: 1;
}

.resource-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: white;
  display: flex;
  flex-direction: column;
}

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

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

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

.resource-card .button {
  align-self: flex-start;
  margin-top: auto;
}

/* Testimonials секция */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--background);
}

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

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: white;
}

.testimonial-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.testimonial-quote {
  padding: 1rem 0;
}

.testimonial-quote p {
  font-style: italic;
  position: relative;
  padding: 0 0.5rem;
}

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

.testimonial-controls {
  margin-top: 2rem;
}

.testimonial-control {
  margin: 0 0.25rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-control:hover,
.testimonial-control.active {
  background-color: var(--primary);
  color: white;
}

/* Pricing секция */
.pricing-section {
  position: relative;
  padding: 5rem 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.pricing-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 0;
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.pricing-toggle span {
  margin: 0 1rem;
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition-normal);
  border-radius: 34px;
}

.toggle-label:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition-normal);
  border-radius: 50%;
}

.toggle-input:checked + .toggle-label {
  background-color: var(--primary);
}

.toggle-input:checked + .toggle-label:before {
  transform: translateX(30px);
}

.pricing-tables {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.pricing-tables.active {
  display: block;
  opacity: 1;
}

.pricing-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: white;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

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

.pricing-card .title {
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 0 0 0 var(--radius-md);
}

.pricing-features {
  margin: 1.5rem 0;
}

.pricing-features ul {
  list-style-type: none;
  padding: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.pricing-features li:before {
  content: "✓";
  margin-right: 0.5rem;
  color: var(--primary);
  font-weight: bold;
}

/* News секция */
.news-section {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.news-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: white;
  display: flex;
  flex-direction: column;
}

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

.news-card .image-container {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.news-date {
  color: var(--foreground-lighter);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

.news-card .button {
  align-self: flex-start;
  margin-top: auto;
}

/* FAQ секция */
.faq-section {
  position: relative;
  padding: 5rem 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.faq-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-accordion {
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: white;
}

.faq-question {
  padding: 1.5rem;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

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

.faq-question .title {
  margin: 0;
  font-size: 1.1rem;
}

.faq-question .icon {
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

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

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

/* Contact секция */
.contact-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.contact-info {
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  color: var(--primary);
  margin-right: 1rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
}

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

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

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer .title {
  color: white;
  margin-bottom: 1.5rem;
}

.footer p {
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

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

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

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-social a:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-social a[href*="facebook"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255, 255, 255, 0.7)"><path d="M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z"/></svg>');
}

.footer-social a[href*="twitter"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255, 255, 255, 0.7)"><path d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"/></svg>');
}

.footer-social a[href*="instagram"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255, 255, 255, 0.7)"><path d="M7.8,2H16.2C19.4,2 22,4.6 22,7.8V16.2A5.8,5.8 0 0,1 16.2,22H7.8C4.6,22 2,19.4 2,16.2V7.8A5.8,5.8 0 0,1 7.8,2M7.6,4A3.6,3.6 0 0,0 4,7.6V16.4C4,18.39 5.61,20 7.6,20H16.4A3.6,3.6 0 0,0 20,16.4V7.6C20,5.61 18.39,4 16.4,4H7.6M17.25,5.5A1.25,1.25 0 0,1 18.5,6.75A1.25,1.25 0 0,1 17.25,8A1.25,1.25 0 0,1 16,6.75A1.25,1.25 0 0,1 17.25,5.5M12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9Z"/></svg>');
}

.footer-social a[href*="linkedin"]:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255, 255, 255, 0.7)"><path d="M19,3A2,2 0 0,1 21,5V19A2,2 0 0,1 19,21H5A2,2 0 0,1 3,19V5A2,2 0 0,1 5,3H19M18.5,18.5V13.2A3.26,3.26 0 0,0 15.24,9.94C14.39,9.94 13.4,10.46 12.92,11.24V10.13H10.13V18.5H12.92V13.57C12.92,12.8 13.54,12.17 14.31,12.17A1.4,1.4 0 0,1 15.71,13.57V18.5H18.5M6.88,8.56A1.68,1.68 0 0,0 8.56,6.88C8.56,5.95 7.81,5.19 6.88,5.19A1.69,1.69 0 0,0 5.19,6.88C5.19,7.81 5.95,8.56 6.88,8.56M8.27,18.5V10.13H5.5V18.5H8.27Z"/></svg>');
}

.footer-social a:hover {
  color: white;
}

.footer-social a:hover:before {
  filter: brightness(1.2);
}

.copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Страница About */
.about-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.team-section {
  padding: 4rem 0;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

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

.privacy-content, .terms-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Страница Success */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background-color: var(--background-alt);
}

.success-content {
  max-width: 600px;
  padding: 3rem;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

/* Адаптивность */
@media screen and (max-width: 1023px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .image-container {
    height: 180px !important;
  }
}

@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
  
  .stat-item {
    margin-bottom: 1.5rem;
  }
  
  .navbar-menu {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .footer {
    text-align: center;
  }
  
  .footer .column {
    margin-bottom: 2rem;
  }
  
  .footer-social a {
    justify-content: center;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .testimonial-image {
    height: 150px;
  }
}

/* Анимации и кадры */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Биоморфные элементы дизайна */
.biomorphic-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

.biomorphic-shape-1 {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background-color: var(--primary);
  animation-delay: 0s;
}

.biomorphic-shape-2 {
  bottom: 15%;
  right: 5%;
  width: 250px;
  height: 250px;
  background-color: var(--secondary);
  animation-delay: 2s;
}

.biomorphic-shape-3 {
  top: 40%;
  right: 15%;
  width: 200px;
  height: 200px;
  background-color: var(--accent);
  animation-delay: 4s;
}

/* Дополнительные стили для элементов */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.image-container img {
  transition: all var(--transition-normal);
}

/* Читать далее ссылка */
.button.is-small.is-primary.is-outlined {
  font-size: 0.85rem;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  border-width: 1px;
  transition: all var(--transition-fast);
}

.button.is-small.is-primary.is-outlined:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* FontAwesome иконки */
.fas {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.fa-plus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z"/></svg>');
}

.fa-map-marker-alt {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z"/></svg>');
}

.fa-phone {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M6.62,10.79C8.06,13.62 10.38,15.94 13.21,17.38L15.41,15.18C15.69,14.9 16.08,14.82 16.43,14.93C17.55,15.3 18.75,15.5 20,15.5A1,1 0 0,1 21,16.5V20A1,1 0 0,1 20,21A17,17 0 0,1 3,4A1,1 0 0,1 4,3H7.5A1,1 0 0,1 8.5,4C8.5,5.25 8.7,6.45 9.07,7.57C9.18,7.92 9.1,8.31 8.82,8.59L6.62,10.79Z"/></svg>');
}

.fa-envelope {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z"/></svg>');
}

.fa-clock {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4M12.5,7H11V13L16.2,16.2L17,14.9L12.5,12.2V7Z"/></svg>');
}

.title:not(.is-spaced)+.subtitle {
    margin-top: 0 !important;
}