:root {
  /* Нейтральная цветовая схема с ретро-элементами */
  --primary-color: #a87c5b;
  --primary-dark: #8c6548;
  --secondary-color: #5b8a72;
  --secondary-dark: #4a7361;
  --accent-color: #c9a66b;
  --accent-dark: #b59258;
  
  /* Нейтральные цвета */
  --neutral-100: #f8f5f2;
  --neutral-200: #e8e4e0;
  --neutral-300: #d6d0ca;
  --neutral-400: #b4aea6;
  --neutral-500: #8c857d;
  --neutral-600: #6a645e;
  --neutral-700: #4d4842;
  --neutral-800: #332f2b;
  --neutral-900: #1f1d1a;
  
  /* Специальные цвета */
  --error-color: #d64545;
  --success-color: #3e8d63;
  --warning-color: #e9b949;
  --info-color: #4c8dca;
  
  /* Размеры шрифтов */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Радиусы */
  --radius-sm: 0.125rem;
  --radius-md: 0.25rem;
  --radius-lg: 0.5rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  /* Размеры пространства */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  
  /* Тени */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Переходы */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--neutral-100);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

p {
  margin-bottom: var(--space-4);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section {
  padding: var(--space-8) 0;
}

.section:nth-child(even) {
  background-color: var(--neutral-200);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(248, 245, 242, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: var(--space-2) 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: var(--space-1) 0;
  box-shadow: var(--shadow-md);
}

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

.navbar-brand {
  font-weight: 700;
  font-size: var(--font-size-2xl);
  color: var(--primary-color);
}

.navbar-menu {
  display: flex;
}

.navbar-item {
  margin-left: var(--space-5);
  font-weight: 500;
  transition: color var(--transition-normal);
  color: var(--neutral-700);
}

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

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  position: relative;
}

.navbar-burger span {
  display: block;
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--neutral-800);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 8px);
}

.navbar-burger span:nth-child(2) {
  top: 50%;
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 8px);
}

.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  color: white;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: var(--space-12) var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
}

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

.hero .title {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-4);
}

.hero .subtitle {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-6);
  font-weight: 400;
}

/* Buttons */
.button {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.5rem 1.5rem;
  font-size: var(--font-size-base);
  line-height: 1.5;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

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

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

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

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

.button.is-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

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

.button.is-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

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

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

.button.is-large {
  padding: 0.75rem 2rem;
  font-size: var(--font-size-lg);
}

.button.is-small {
  padding: 0.25rem 1rem;
  font-size: var(--font-size-sm);
}

.button.is-fullwidth {
  display: block;
  width: 100%;
}

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

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

.card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.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: var(--space-5);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card .title {
  margin-bottom: var(--space-3);
  font-size: var(--font-size-2xl);
}

.card .subtitle {
  color: var(--neutral-600);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-lg);
}

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

/* Timeline */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-6) 0;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--neutral-300);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid var(--neutral-100);
}

.timeline-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.timeline-content .heading {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--space-2);
}

/* Vision Section */
#vision {
  position: relative;
  overflow: hidden;
}

#vision .content {
  position: relative;
  z-index: 2;
}

#vision figure {
  margin-top: var(--space-6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Instructors Section */
#instructors .card {
  text-align: center;
}

#instructors .card-image {
  height: 300px;
}

#instructors .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#instructors .title {
  margin-top: var(--space-3);
}

/* Resources Section */
#resources .card-image {
  height: 220px;
}

#resources .button {
  margin-top: var(--space-3);
}

/* Research Section */
#research {
  position: relative;
}

#research .timeline {
  margin-top: var(--space-6);
}

#research figure {
  margin-top: var(--space-6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Webinars Section */
#webinars .card-image {
  height: 220px;
}

#webinars .subtitle {
  margin-top: -10px;
  margin-bottom: var(--space-3);
  color: var(--primary-color);
}

/* Pricing Section */
#pricing .card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
}

#pricing .title {
  color: var(--primary-color);
}

#pricing .subtitle {
  font-size: var(--font-size-5xl);
  color: var(--neutral-800);
  margin-bottom: 0;
}

#pricing ul {
  margin: var(--space-5) 0;
  text-align: left;
}

#pricing li {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--neutral-200);
}

#pricing li:last-child {
  border-bottom: none;
}

/* Press Section */
#press .card {
  margin-bottom: var(--space-4);
}

#press .media {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-3);
}

#press .media-left {
  margin-right: var(--space-3);
}

#press .image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

#press .title {
  margin-bottom: var(--space-1);
}

#press .subtitle {
  color: var(--neutral-500);
}

/* Media Section */
#media .image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-5);
  transition: transform var(--transition-normal);
}

#media .image:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* Contact Section */
#contact .card {
  max-width: 800px;
  margin: 0 auto;
}

#contact .label {
  color: var(--neutral-700);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

#contact .input,
#contact .textarea,
#contact .select select {
  width: 100%;
  padding: var(--space-3);
  border: 2px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-family: 'Work Sans', sans-serif;
  transition: border-color var(--transition-normal);
}

#contact .input:focus,
#contact .textarea:focus,
#contact .select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(168, 124, 91, 0.25);
}

#contact .field {
  margin-bottom: var(--space-5);
}

/* Footer */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-200);
  padding: var(--space-8) 0;
}

.footer .title {
  color: white;
  margin-bottom: var(--space-4);
}

.footer a {
  color: var(--neutral-300);
  transition: color var(--transition-normal);
}

.footer a:hover {
  color: white;
  text-decoration: none;
}

.footer ul {
  margin-bottom: var(--space-4);
}

.footer li {
  margin-bottom: var(--space-2);
}

.footer p {
  margin-bottom: var(--space-2);
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-8);
  text-align: center;
}

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

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

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: var(--space-8);
}

.page-content h1 {
  margin-bottom: var(--space-6);
}

.page-content h2 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--neutral-300);
}

/* Utility Classes */
.has-text-centered {
  text-align: center;
}

.has-text-white {
  color: white !important;
}

.mb-1 {
  margin-bottom: var(--space-1);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-5 {
  margin-bottom: var(--space-5);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mt-1 {
  margin-top: var(--space-1);
}

.mt-2 {
  margin-top: var(--space-2);
}

.mt-3 {
  margin-top: var(--space-3);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-5 {
  margin-top: var(--space-5);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mr-3 {
  margin-right: var(--space-3);
}

/* Cookie Consent */
#cookie-consent {
  background-color: rgba(38, 38, 38, 0.95);
  padding: var(--space-4);
  color: white;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: none;
}

#cookie-consent p {
  margin-bottom: var(--space-3);
}

#accept-cookies {
  background-color: var(--success-color);
  color: white;
  border: none;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

#accept-cookies:hover {
  background-color: #2d6a4a;
}

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

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

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

.fade-in {
  animation: fadeIn var(--transition-normal);
}

.slide-up {
  animation: slideUp var(--transition-normal);
}

.pulse {
  animation: pulse 2s infinite;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-100);
    box-shadow: var(--shadow-md);
    padding: var(--space-4);
    flex-direction: column;
  }

  .navbar-menu.is-active {
    display: flex;
  }

  .navbar-item {
    margin: var(--space-2) 0;
  }

  .navbar-burger {
    display: block;
  }

  .hero .title {
    font-size: var(--font-size-4xl);
  }

  .hero .subtitle {
    font-size: var(--font-size-2xl);
  }

  .timeline:before {
    left: 30px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-marker {
    left: 22px;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hero .title {
    font-size: var(--font-size-3xl);
  }

  .hero .subtitle {
    font-size: var(--font-size-xl);
  }

  .section {
    padding: var(--space-6) 0;
  }

  .card-image {
    height: 200px;
  }

  #instructors .card-image {
    height: 250px;
  }
}

@media screen and (max-width: 480px) {
  .hero-body {
    min-height: 60vh;
  }

  .hero .title {
    font-size: var(--font-size-2xl);
  }

  .hero .subtitle {
    font-size: var(--font-size-lg);
  }

  .button.is-large {
    padding: 0.5rem 1.5rem;
    font-size: var(--font-size-base);
  }

  .card-image {
    height: 180px;
  }

  #instructors .card-image {
    height: 220px;
  }
}
.navbar-burger{
  display: none;
}