/* ============================
   ОСНОВНЫЕ СТИЛИ И ПЕРЕМЕННЫЕ
   ============================ */
:root {
  /* Основные цвета */
  --fe-color-dark-green: #2A5C41;
  --fe-color-olive: #647D58;
  --fe-color-sand: #D9C9A8;
  
  /* Акцентные цвета */
  --fe-color-terracotta: #BC6C25;
  --fe-color-ochre: #DDA15E;
  
  /* Фоновые цвета */
  --fe-color-cream: #F5F1E8;
  --fe-color-light-sand: #ECE6D8;
  --fe-color-white: #FFFFFF;
  
  /* Текстовые цвета */
  --fe-color-dark-brown: #33302E;
  --fe-color-gray: #6B6B6B;
  --fe-color-light-gray: #9A9A9A;
  
  /* Размеры */
  --fe-border-radius: 8px;
  --fe-border-radius-large: 12px;
  --fe-spacing-xs: 4px;
  --fe-spacing-sm: 8px;
  --fe-spacing-md: 16px;
  --fe-spacing-lg: 24px;
  --fe-spacing-xl: 32px;
  
  /* Тени */
  --fe-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --fe-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --fe-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Переходы */
  --fe-transition: all 0.3s ease;
}

/* ============================
   БАЗОВЫЕ СТИЛИ
   ============================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--fe-color-dark-brown);
  background-color: var(--fe-color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

.iti {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--fe-color-dark-brown);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--fe-color-dark-green);
  text-decoration: none;
  transition: var(--fe-transition);
}

a:hover {
  color: var(--fe-color-olive);
  text-decoration: none;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

/* ============================
   ХЕДЕР И НАВИГАЦИЯ
   ============================ */
.fe-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--fe-color-white);
  box-shadow: var(--fe-shadow-sm);
  padding: 0.75rem 0;
  transition: var(--fe-transition);
}

.fe-logo {
  display: block;
}

.uk-navbar-container:not(.uk-navbar-transparent) {
  background: transparent;
}

.uk-navbar-nav > li > a {
  color: var(--fe-color-dark-brown);
  font-weight: 500;
  font-size: 1rem;
  text-transform: none;
  transition: var(--fe-transition);
  min-height: 60px;
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-active > a {
  color: var(--fe-color-dark-green);
}

.uk-navbar-toggle {
  color: var(--fe-color-dark-brown);
}

.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus {
  color: var(--fe-color-dark-green);
}

.uk-offcanvas-bar {
  background-color: var(--fe-color-dark-green);
}

.uk-offcanvas-bar .uk-nav-default > li > a {
  color: var(--fe-color-white);
  font-size: 1.1rem;
  padding: 10px 0;
}

.uk-offcanvas-bar .uk-nav-default > li.uk-active > a {
  color: var(--fe-color-sand);
  font-weight: 600;
}

/* ============================
   БАННЕР
   ============================ */
.fe-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fe-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fe-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fe-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.fe-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--fe-color-white);
  padding: 0 20px;
  max-width: 900px;
}

.fe-banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--fe-color-white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.fe-banner-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.fe-banner-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================
   КНОПКИ
   ============================ */
.fe-button-primary {
  display: inline-block;
  background-color: var(--fe-color-dark-green);
  color: var(--fe-color-white);
  padding: 12px 24px;
  border-radius: var(--fe-border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--fe-transition);
  border: 2px solid var(--fe-color-dark-green);
}

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

.fe-button-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--fe-color-olive);
  padding: 12px 24px;
  border-radius: var(--fe-border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--fe-transition);
  border: 2px solid var(--fe-color-white);
}

.fe-button-secondary:hover {
  background-color: var(--fe-color-white);
  color: var(--fe-color-dark-green);
  transform: translateY(-2px);
  box-shadow: var(--fe-shadow-md);
}

.fe-button-text {
  display: inline-block;
  background-color: transparent;
  color: var(--fe-color-dark-green);
  padding: 12px 24px;
  border-radius: var(--fe-border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--fe-transition);
  border: none;
}

.fe-button-text:hover {
  background-color: rgba(42, 92, 65, 0.1);
  color: var(--fe-color-dark-green);
}

.fe-button-full {
  width: 100%;
}

.fe-link-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--fe-color-dark-green);
  font-weight: 600;
  transition: var(--fe-transition);
}

.fe-link-arrow i {
  margin-left: 8px;
  transition: var(--fe-transition);
}

.fe-link-arrow:hover {
  color: var(--fe-color-olive);
}

.fe-link-arrow:hover i {
  transform: translateX(4px);
}

/* ============================
   СЕКЦИИ
   ============================ */
.fe-section {
  padding: 80px 0;
  position: relative;
}

.fe-section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--fe-color-dark-green);
}

.fe-section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--fe-color-gray);
}

.fe-texture-divider {
  height: 4px;
  width: 60px;
  background-color: var(--fe-color-sand);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* ============================
   КАРТОЧКИ СОБЫТИЙ
   ============================ */
.fe-event-card {
  display: flex;
  background-color: var(--fe-color-white);
  border-radius: var(--fe-border-radius-large);
  overflow: hidden;
  box-shadow: var(--fe-shadow-md);
  margin-bottom: 1.5rem;
  transition: var(--fe-transition);
}

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

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

.fe-event-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.fe-event-month {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.fe-event-details {
  padding: 1.5rem;
  flex: 1;
}

.fe-event-details h3 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.fe-event-location {
  color: var(--fe-color-gray);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.fe-event-location i {
  margin-right: 0.5rem;
  color: var(--fe-color-terracotta);
}

/* ============================
   КАРТОЧКИ СПИКЕРОВ
   ============================ */
.fe-speaker-card {
  background-color: var(--fe-color-white);
  border-radius: var(--fe-border-radius-large);
  overflow: hidden;
  box-shadow: var(--fe-shadow-md);
  margin-bottom: 2rem;
  transition: var(--fe-transition);
}

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

.fe-speaker-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.fe-speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--fe-transition);
}

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

.fe-speaker-info {
  padding: 1.5rem;
}

.fe-speaker-info h3 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.fe-speaker-position {
  color: var(--fe-color-terracotta);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ============================
   КАРТОЧКИ МАСТЕР-КЛАССОВ
   ============================ */
.fe-workshop-card {
  background-color: var(--fe-color-white);
  border-radius: var(--fe-border-radius-large);
  overflow: hidden;
  box-shadow: var(--fe-shadow-md);
  margin-bottom: 2rem;
  transition: var(--fe-transition);
  height: 100%;
}

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

.fe-workshop-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.fe-workshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--fe-transition);
}

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

.fe-workshop-content {
  padding: 1.5rem;
}

.fe-workshop-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.fe-workshop-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.fe-workshop-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.fe-workshop-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--fe-color-terracotta);
  font-weight: bold;
}

/* ============================
   ГАЛЕРЕЯ
   ============================ */
.fe-gallery {
  background-color: var(--fe-color-light-sand);
}

.fe-gallery-carousel {
  margin-top: 2rem;
}

.fe-gallery-item {
  position: relative;
  border-radius: var(--fe-border-radius-large);
  overflow: hidden;
  box-shadow: var(--fe-shadow-md);
  margin: 10px;
}

.fe-gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--fe-transition);
}

.fe-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  padding: 1.5rem;
  color: var(--fe-color-white);
  transition: var(--fe-transition);
}

.fe-gallery-caption h4 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--fe-color-white);
}

.fe-gallery-caption p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.fe-gallery-item:hover .fe-gallery-caption {
  background: linear-gradient(to top, rgba(42, 92, 65, 0.9) 0%, rgba(42, 92, 65, 0) 100%);
}

/* Настройки для Owl Carousel */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--fe-color-dark-green);
  color: var(--fe-color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  transition: var(--fe-transition);
}

.owl-carousel .owl-nav button.owl-prev {
  left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -20px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--fe-color-olive);
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 1rem;
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background-color: var(--fe-color-light-gray);
  border-radius: 50%;
  display: block;
  transition: var(--fe-transition);
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background-color: var(--fe-color-dark-green);
}

/* ============================
   ФОРМА ОБРАТНОЙ СВЯЗИ
   ============================ */
.fe-contact-form {
  background-color: var(--fe-color-white);
}

.fe-form-content {
  padding: 2rem;
  height: 100%;
}

.fe-form-content h2 {
  text-align: left;
}

.fe-form-content .fe-texture-divider {
  margin: 0 0 2rem;
}

.fe-contact-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.fe-contact-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.fe-contact-list li i {
  color: var(--fe-color-dark-green);
  margin-right: 1rem;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.fe-form {
  background-color: var(--fe-color-cream);
  padding: 2rem;
  border-radius: var(--fe-border-radius-large);
  box-shadow: var(--fe-shadow-md);
}

.fe-form-group {
  margin-bottom: 1.5rem;
}

.fe-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.fe-input,
.fe-textarea,
.fe-select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--fe-color-light-gray);
  border-radius: var(--fe-border-radius);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--fe-transition);
}

.fe-input:focus,
.fe-textarea:focus,
.fe-select:focus {
  outline: none;
  border-color: var(--fe-color-dark-green);
  box-shadow: 0 0 0 3px rgba(42, 92, 65, 0.1);
}

.fe-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.fe-checkbox input {
  margin-right: 10px;
  margin-top: 5px;
}

.fe-checkbox-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

.fe-checkbox-text a {
  color: var(--fe-color-dark-green);
  text-decoration: underline;
}

.fe-checkbox-text a:hover {
  color: var(--fe-color-olive);
}

/* ============================
   ФУТЕР
   ============================ */
.fe-footer {
  background-color: var(--fe-color-dark-green);
  color: var(--fe-color-white);
  padding: 4rem 0 2rem;
}

.fe-footer-logo {
  margin-bottom: 1rem;
}

.fe-footer p {
  color: rgba(255, 255, 255, 0.8);
}

.fe-footer-title {
  color: var(--fe-color-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.fe-footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--fe-color-sand);
  border-radius: 1.5px;
}

.fe-footer-nav {
  list-style-type: none;
  padding-left: 0;
}

.fe-footer-nav li {
  margin-bottom: 0.75rem;
}

.fe-footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--fe-transition);
}

.fe-footer-nav a:hover {
  color: var(--fe-color-sand);
  padding-left: 5px;
}

.fe-footer-contacts {
  list-style-type: none;
  padding-left: 0;
}

.fe-footer-contacts li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.fe-footer-contacts li i {
  color: var(--fe-color-sand);
  margin-right: 1rem;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.fe-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.fe-cookie-settings-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  text-decoration: underline;
  transition: var(--fe-transition);
}

.fe-cookie-settings-btn:hover {
  color: var(--fe-color-sand);
}

/* ============================
   COOKIE CONSENT
   ============================ */
.fe-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--fe-color-white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 1.5rem;
  display: none;
}

.fe-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.fe-cookie-content h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.fe-cookie-content p {
  margin-bottom: 1.5rem;
}

.fe-cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Modal */
.fe-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.fe-modal-content {
  background-color: var(--fe-color-white);
  margin: 10% auto;
  padding: 2rem;
  border-radius: var(--fe-border-radius-large);
  max-width: 600px;
  position: relative;
}

.fe-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--fe-color-gray);
  transition: var(--fe-transition);
}

.fe-modal-close:hover {
  color: var(--fe-color-dark-brown);
}

.fe-cookie-options {
  margin: 2rem 0;
}

.fe-cookie-option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.fe-cookie-option-info {
  margin-left: 1rem;
  flex: 1;
}

.fe-cookie-option-info h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.fe-cookie-option-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--fe-color-gray);
}

.fe-cookie-settings-buttons {
  text-align: right;
}

/* Switch */
.fe-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-top: 3px;
}

.fe-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.fe-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--fe-color-light-gray);
  transition: var(--fe-transition);
  border-radius: 34px;
}

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

input:checked + .fe-slider {
  background-color: var(--fe-color-dark-green);
}

input:focus + .fe-slider {
  box-shadow: 0 0 1px var(--fe-color-dark-green);
}

input:checked + .fe-slider:before {
  transform: translateX(26px);
}

/* ============================
   СТРАНИЦА БИЛЕТОВ
   ============================ */
.fe-page-header {
  position: relative;
  height: 50vh;
  min-height: 400px;
  width: 100%;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fe-page-header-small {
  height: 30vh;
  min-height: 200px;
  background-color: var(--fe-color-dark-green);
}

.fe-page-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fe-page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fe-page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.fe-page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--fe-color-white);
  padding: 0 20px;
  max-width: 900px;
}

.fe-page-header-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--fe-color-white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.fe-page-header-content p {
  font-size: 1.1rem;
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Карточки билетов */
.fe-ticket-card {
  background-color: var(--fe-color-white);
  border-radius: var(--fe-border-radius-large);
  overflow: hidden;
  box-shadow: var(--fe-shadow-md);
  margin-bottom: 2rem;
  transition: var(--fe-transition);
  height: 100%;
}

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

.fe-ticket-header {
  background-color: var(--fe-color-dark-green);
  color: var(--fe-color-white);
  padding: 1.5rem;
  text-align: center;
}

.fe-ticket-premium .fe-ticket-header {
  background-color: var(--fe-color-terracotta);
}

.fe-ticket-header h3 {
  margin: 0 0 1rem;
  color: var(--fe-color-white);
  font-size: 1.5rem;
}

.fe-ticket-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.fe-price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.fe-price-currency {
  font-size: 1.2rem;
  margin-left: 0.3rem;
}

.fe-ticket-content {
  padding: 1.5rem;
}

.fe-ticket-features {
  list-style-type: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.fe-ticket-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--fe-color-light-sand);
  display: flex;
  align-items: center;
}

.fe-ticket-features li:last-child {
  border-bottom: none;
}

.fe-ticket-features li i {
  margin-right: 1rem;
  width: 16px;
  text-align: center;
}

.fe-ticket-features li i.fa-check {
  color: var(--fe-color-dark-green);
}

.fe-ticket-features li i.fa-times {
  color: var(--fe-color-light-gray);
}

/* Условия возврата */
.fe-refund-content {
  background-color: var(--fe-color-cream);
  padding: 2rem;
  border-radius: var(--fe-border-radius-large);
}

.fe-refund-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.fe-refund-term {
  flex: 1;
  min-width: 250px;
  background-color: var(--fe-color-white);
  border-radius: var(--fe-border-radius);
  padding: 1.5rem;
  box-shadow: var(--fe-shadow-sm);
  display: flex;
  align-items: flex-start;
}

.fe-refund-icon {
  margin-right: 1rem;
  background-color: var(--fe-color-dark-green);
  color: var(--fe-color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fe-refund-info h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.fe-refund-info p {
  margin: 0;
  color: var(--fe-color-gray);
}

.fe-refund-note {
  background-color: rgba(42, 92, 65, 0.1);
  border-left: 4px solid var(--fe-color-dark-green);
  padding: 1.5rem;
  border-radius: 0 var(--fe-border-radius) var(--fe-border-radius) 0;
}

/* Форма заказа */
.fe-order-steps {
  list-style-type: none;
  padding-left: 0;
  counter-reset: step-counter;
}

.fe-order-steps li {
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.fe-step-number {
  background-color: var(--fe-color-dark-green);
  color: var(--fe-color-white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
}

.fe-step-content h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.fe-step-content p {
  margin: 0;
  color: var(--fe-color-gray);
}

.fe-payment-methods {
  margin-top: 2rem;
}

.fe-payment-methods h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.fe-payment-icons {
  display: flex;
  gap: 1rem;
}

.fe-payment-icons i {
  font-size: 2rem;
  color: var(--fe-color-gray);
}

/* Партнеры по продаже билетов */
.fe-partner-card {
  background-color: var(--fe-color-white);
  border-radius: var(--fe-border-radius-large);
  padding: 1.5rem;
  box-shadow: var(--fe-shadow-md);
  height: 100%;
  transition: var(--fe-transition);
}

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

.fe-partner-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ============================
   СТРАНИЦА СТОИМОСТИ УЧАСТИЯ
   ============================ */
.fe-pricing-card {
  background-color: var(--fe-color-white);
  border-radius: var(--fe-border-radius-large);
  overflow: hidden;
  box-shadow: var(--fe-shadow-md);
  margin-bottom: 2rem;
  transition: var(--fe-transition);
  height: 100%;
  position: relative;
}

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

.fe-pricing-popular {
  border: 2px solid var(--fe-color-ochre);
}

.fe-pricing-premium {
  border: 2px solid var(--fe-color-terracotta);
}

.fe-pricing-badge {
  position: absolute;
  top: 0;
  right: 2rem;
  background-color: var(--fe-color-ochre);
  color: var(--fe-color-white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--fe-border-radius) var(--fe-border-radius);
  font-weight: 600;
  font-size: 0.9rem;
}

.fe-pricing-header {
  background-color: var(--fe-color-dark-green);
  color: var(--fe-color-white);
  padding: 1.5rem;
  text-align: center;
}

.fe-pricing-popular .fe-pricing-header {
  background-color: var(--fe-color-ochre);
}

.fe-pricing-premium .fe-pricing-header {
  background-color: var(--fe-color-terracotta);
}

.fe-pricing-header h3 {
  margin: 0 0 1rem;
  color: var(--fe-color-white);
  font-size: 1.5rem;
}

.fe-pricing-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.fe-pricing-content {
  padding: 1.5rem;
}

.fe-pricing-features {
  list-style-type: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.fe-pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--fe-color-light-sand);
  display: flex;
  align-items: center;
}

.fe-pricing-features li:last-child {
  border-bottom: none;
}

.fe-pricing-features li i {
  margin-right: 1rem;
  width: 16px;
  text-align: center;
}

.fe-pricing-features li i.fa-check {
  color: var(--fe-color-dark-green);
}

.fe-pricing-features li i.fa-times {
  color: var(--fe-color-light-gray);
}

/* Специальные предложения */
.fe-offer-card {
  background-color: var(--fe-color-white);
  border-radius: var(--fe-border-radius-large);
  padding: 1.5rem;
  box-shadow: var(--fe-shadow-md);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  transition: var(--fe-transition);
  height: 100%;
}

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

.fe-offer-icon {
  margin-right: 1.5rem;
  background-color: var(--fe-color-dark-green);
  color: var(--fe-color-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.fe-offer-content {
  flex: 1;
}

.fe-offer-content h3 {
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Преимущества участия */
.fe-benefits {
  background-color: var(--fe-color-light-sand);
}

.fe-benefit-card {
  background-color: var(--fe-color-white);
  border-radius: var(--fe-border-radius-large);
  padding: 2rem;
  box-shadow: var(--fe-shadow-md);
  text-align: center;
  transition: var(--fe-transition);
  height: 100%;
}

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

.fe-benefit-icon {
  background-color: var(--fe-color-dark-green);
  color: var(--fe-color-white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

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

/* FAQ */
.fe-accordion {
  margin-top: 2rem;
}

.uk-accordion-title {
  background-color: var(--fe-color-white);
  padding: 1rem 1.5rem;
  border-radius: var(--fe-border-radius);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fe-color-dark-brown);
  transition: var(--fe-transition);
  position: relative;
}

.uk-accordion-title:hover {
  background-color: var(--fe-color-light-sand);
}

.uk-accordion-title::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  transition: var(--fe-transition);
}

.uk-open > .uk-accordion-title::before {
  transform: rotate(180deg);
}

.uk-accordion-content {
  padding: 0 1.5rem 1.5rem;
  background-color: var(--fe-color-white);
  margin-top: -0.5rem;
  border-radius: 0 0 var(--fe-border-radius) var(--fe-border-radius);
  margin-bottom: 0.5rem;
}

/* ============================
   СТРАНИЦА КОНТАКТОВ
   ============================ */
.fe-contact-details {
  margin-bottom: 2rem;
}

.fe-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.fe-contact-icon {
  background-color: var(--fe-color-dark-green);
  color: var(--fe-color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.fe-contact-text h3 {
  margin-top: 0;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.fe-contact-text p {
  margin: 0 0 0.5rem;
}

.fe-contact-note {
  font-size: 0.9rem;
  color: var(--fe-color-gray);
}

.fe-venue-info {
  margin-bottom: 2rem;
}

.fe-venue-info h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem;
}

.fe-transport-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.fe-transport-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.fe-transport-list li i {
  color: var(--fe-color-terracotta);
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

.fe-additional-info {
  background-color: var(--fe-color-light-sand);
  padding: 1.5rem;
  border-radius: var(--fe-border-radius);
  margin-top: 1.5rem;
}

.fe-additional-info p {
  margin-top: 0;
}

.fe-map-container {
  width: 100%;
  height: 500px;
  position: relative;
}

.fe-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================
   ДОКУМЕНТЫ (ПОЛИТИКИ)
   ============================ */
.fe-document {
  background-color: var(--fe-color-white);
  padding: 2rem;
  border-radius: var(--fe-border-radius-large);
  box-shadow: var(--fe-shadow-md);
}

.fe-document-intro {
  margin-bottom: 2rem;
}

.fe-document-section {
  margin-bottom: 2.5rem;
}

.fe-document-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--fe-color-dark-green);
  border-bottom: 2px solid var(--fe-color-light-sand);
  padding-bottom: 0.75rem;
}

.fe-document-section h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem;
}

.fe-document-section ul, 
.fe-document-section ol {
  margin-bottom: 1.5rem;
}

.fe-document-section li {
  margin-bottom: 0.5rem;
}

/* Таблица условий возврата */
.fe-refund-terms-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  border-radius: var(--fe-border-radius);
  overflow: hidden;
}

.fe-refund-terms-row {
  display: flex;
}

.fe-refund-terms-header {
  background-color: var(--fe-color-dark-green);
  color: var(--fe-color-white);
  font-weight: 600;
}

.fe-refund-terms-cell {
  flex: 1;
  padding: 1rem;
  border-bottom: 1px solid var(--fe-color-light-sand);
}

.fe-refund-terms-row:last-child .fe-refund-terms-cell {
  border-bottom: none;
}

.fe-refund-terms-row:nth-child(even) {
  background-color: var(--fe-color-light-sand);
}

/* ============================
   СТРАНИЦА БЛАГОДАРНОСТИ
   ============================ */
.fe-thanks-section {
  padding: 100px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.fe-thanks-content {
  background-color: var(--fe-color-white);
  padding: 3rem;
  border-radius: var(--fe-border-radius-large);
  box-shadow: var(--fe-shadow-md);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.fe-thanks-icon {
  font-size: 4rem;
  color: var(--fe-color-dark-green);
  margin-bottom: 1.5rem;
}

.fe-thanks-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.fe-thanks-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.fe-thanks-details {
  background-color: var(--fe-color-light-sand);
  padding: 1.5rem;
  border-radius: var(--fe-border-radius);
  margin-bottom: 2rem;
  text-align: left;
}

.fe-thanks-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.fe-other-events {
  background-color: var(--fe-color-light-sand);
}

/* ============================
   МЕДИА-ЗАПРОСЫ
   ============================ */
@media (max-width: 1200px) {
  .fe-banner-content h1 {
    font-size: 2.5rem;
  }
  
  .fe-section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 960px) {
  .fe-banner {
    height: 70vh;
  }
  
  .fe-banner-content h1 {
    font-size: 2.2rem;
  }
  
  .fe-section {
    padding: 60px 0;
  }
  
  .fe-section-title {
    font-size: 2rem;
  }
  
  .fe-event-date {
    padding: 1rem;
    min-width: 80px;
  }
  
  .fe-event-day {
    font-size: 1.5rem;
  }
  
  .fe-event-details {
    padding: 1rem;
  }
  
  .fe-event-details h3 {
    font-size: 1.3rem;
  }
  
  .owl-carousel .owl-nav button.owl-prev {
    left: 10px;
  }
  
  .owl-carousel .owl-nav button.owl-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .fe-banner-content h1 {
    font-size: 1.8rem;
  }
  
  .fe-banner-content p {
    font-size: 1.1rem;
  }
  
  .fe-section {
    padding: 50px 0;
  }
  
  .fe-section-title {
    font-size: 1.8rem;
  }
  
  .fe-section-description {
    font-size: 1rem;
  }
  
  .fe-speaker-image {
    height: 250px;
  }
  
  .fe-workshop-image {
    height: 200px;
  }
  
  .fe-form-content,
  .fe-form {
    padding: 1.5rem;
  }
  
  .fe-cookie-buttons {
    flex-direction: column;
  }
  
  .fe-cookie-buttons button {
    width: 100%;
  }
  
  .fe-modal-content {
    width: 90%;
    margin: 20% auto;
    padding: 1.5rem;
  }
  
  .fe-offer-card {
    flex-direction: column;
  }
  
  .fe-offer-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .fe-thanks-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .fe-banner-content h1 {
    font-size: 1.5rem;
  }
  
  .fe-banner-cta {
    flex-direction: column;
  }
  
  .fe-banner-cta a {
    width: 100%;
  }
  
  .fe-section-title {
    font-size: 1.5rem;
  }
  
  .fe-event-card {
    flex-direction: column;
  }
  
  .fe-event-date {
    width: 100%;
    padding: 0.75rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .fe-event-day {
    margin-right: 0.5rem;
  }
  
  .fe-event-month {
    margin-top: 0;
  }
  
  .fe-refund-term {
    flex-direction: column;
  }
  
  .fe-refund-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .fe-contact-item {
    flex-direction: column;
  }
  
  .fe-contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .fe-thanks-actions {
    flex-direction: column;
  }
  
  .fe-thanks-actions a {
    width: 100%;
  }
  
  .fe-refund-terms-row {
    flex-direction: column;
  }
  
  .fe-refund-terms-cell {
    border-bottom: none;
  }
  
  .fe-refund-terms-row:not(:last-child) {
    border-bottom: 1px solid var(--fe-color-light-sand);
  }
}

/* View Transitions API */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.fe-banner-content,
.fe-section [data-aos="fade-up"],
.fe-form,
.fe-event-card,
.fe-speaker-card,
.fe-workshop-card,
.fe-gallery-item,
.fe-ticket-card,
.fe-pricing-card,
.fe-benefit-card,
.fe-offer-card,
.fe-partner-card,
.fe-contact-item,
.fe-thanks-content {
  view-transition-name: auto;
}

/* CSS text-wrap: balance для лучшего переноса текста */
h1, h2, h3, .fe-banner-content p, .fe-section-description {
  text-wrap: balance;
}

/* CSS Transform для эффективных анимаций */
.fe-button-primary:hover,
.fe-button-secondary:hover,
.fe-event-card:hover,
.fe-speaker-card:hover,
.fe-workshop-card:hover,
.fe-ticket-card:hover,
.fe-pricing-card:hover,
.fe-benefit-card:hover,
.fe-offer-card:hover,
.fe-partner-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fe-link-arrow:hover i {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

.fe-speaker-image img,
.fe-workshop-image img,
.fe-gallery-item img {
  transition: transform 0.5s ease;
}

.fe-speaker-card:hover .fe-speaker-image img,
.fe-workshop-card:hover .fe-workshop-image img,
.fe-gallery-item:hover img {
  transform: scale(1.05);
}