:root {
  /* Основная палитра (яркая) */
  --primary-color: #ff6b35;
  --primary-dark: #e05a2b;
  --primary-light: #ff8a5c;
  --secondary-color: #0582ca;
  --secondary-dark: #046ba8;
  --secondary-light: #2d9cdb;
  --accent-color: #ffc745;
  --accent-dark: #e6ae31;
  --accent-light: #ffd470;
  
  /* Нейтральные цвета */
  --dark: #1a1a2e;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #f0f0f0;
  --off-white: #f9f9f9;
  --white: #ffffff;
  
  /* Функциональные цвета */
  --success: #4caf50;
  --warning: #ff9800;
  --error: #f44336;
  --info: #2196f3;
  
  /* Тени для нейроморфизма */
  --nm-shadow-light: 5px 5px 10px rgba(0, 0, 0, 0.05);
  --nm-shadow-dark: -5px -5px 10px rgba(255, 255, 255, 0.8);
  --nm-shadow-inset-light: inset 5px 5px 10px rgba(0, 0, 0, 0.05);
  --nm-shadow-inset-dark: inset -5px -5px 10px rgba(255, 255, 255, 0.8);
  
  /* Радиусы */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Параметры макета */
  --container-width: 1200px;
  --header-height: 80px;
  --section-spacing: 100px;
  --card-spacing: 30px;
  
  /* Z-индексы */
  --z-negative: -1;
  --z-low: 1;
  --z-mid: 10;
  --z-high: 100;
  --z-overlay: 1000;
  --z-modal: 2000;
  --z-highest: 9999;
}

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

html {
  font-size: 62.5%; /* 10px для удобства расчетов */
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 2rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--transition-medium);
}

a:hover {
  color: var(--secondary-dark);
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 2rem;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Секционные заголовки */
.section-title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  padding-bottom: 2rem;
  color: var(--dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 0.4rem;
  background: var(--primary-color);
  border-radius: 0.2rem;
}

/* Нейроморфические элементы */
.nm-box {
  border-radius: var(--border-radius-md);
  background: var(--off-white);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.nm-box:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.08), -8px -8px 15px rgba(255, 255, 255, 0.9);
}

.nm-box-inset {
  border-radius: var(--border-radius-md);
  background: var(--off-white);
  box-shadow: var(--nm-shadow-inset-light), var(--nm-shadow-inset-dark);
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  outline: none;
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
  position: relative;
  overflow: hidden;
  font-size: 1.6rem;
}

.btn::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: left 0.7s;
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  box-shadow: var(--nm-shadow-inset-light), var(--nm-shadow-inset-dark);
  transform: translateY(2px);
}

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

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

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

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

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

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

button, 
input[type="submit"] {
  font-family: 'Source Sans Pro', sans-serif;
  cursor: pointer;
}

/* Формы */
.form-group {
  margin-bottom: 2rem;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--dark-gray);
}

input, 
textarea, 
select {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: var(--border-radius-sm);
  background-color: var(--white);
  box-shadow: var(--nm-shadow-inset-light), var(--nm-shadow-inset-dark);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.6rem;
  transition: box-shadow var(--transition-medium);
}

input:focus, 
textarea:focus, 
select:focus {
  outline: none;
  box-shadow: inset 3px 3px 5px rgba(0, 0, 0, 0.1), inset -3px -3px 5px rgba(255, 255, 255, 0.5);
}

textarea {
  resize: vertical;
  min-height: 12rem;
}

/* Хедер и навигация */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-high);
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color var(--transition-medium);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
}

.logo h1 {
  margin: 0;
  font-size: 2.8rem;
  color: var(--primary-color);
}

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

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

.desktop-nav a {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-gray);
  transition: color var(--transition-medium);
  position: relative;
}

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

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

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.4rem;
  cursor: pointer;
  z-index: var(--z-high);
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  border-radius: 3px;
  transition: all var(--transition-medium);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: var(--z-mid);
  padding-top: var(--header-height);
  transform: translateY(-100%);
  transition: transform var(--transition-medium);
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  margin: 1.5rem 0;
}

.mobile-nav a {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
}

/* Hero секция */
.hero {
  position: relative;
  width: 100%;
  padding: 15rem 0;
  margin-top: var(--header-height);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
}

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

.hero-content {
  position: relative;
  z-index: var(--z-low);
  max-width: 80rem;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Accolades секция */
.accolades {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.accolades-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat-widget {
  width: 22rem;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--border-radius-md);
  background: var(--white);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
  transition: transform var(--transition-medium);
}

.stat-widget:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1;
}

.accolades-description {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

/* Workshops секция (Сервисы) */
.workshops {
  padding: var(--section-spacing) 0;
  background-color: var(--off-white);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background-color: var(--white);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
  transition: transform var(--transition-medium);
}

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

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

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

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

.card-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.card-content p {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card-content .btn {
  align-self: center;
  margin-top: auto;
}

/* Instructors секция (Команда) */
.instructors {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
}

.instructor-title {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

/* Resources секция */
.resources {
  padding: var(--section-spacing) 0;
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.resources::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/texture-light.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: var(--z-negative);
}

.resources-intro {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 5rem;
  font-size: 1.8rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.resource-card {
  padding: 3rem;
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
  transition: transform var(--transition-medium);
}

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

.resource-card h3 {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-color);
}

.resource-card ul {
  list-style: none;
}

.resource-card li {
  margin-bottom: 1.2rem;
}

.resource-card a {
  color: var(--secondary-color);
  transition: color var(--transition-medium);
  display: inline-block;
  position: relative;
}

.resource-card a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-medium);
}

.resource-card a:hover {
  color: var(--secondary-dark);
}

.resource-card a:hover::after {
  width: 100%;
}

/* Events секция */
.events {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 4rem;
}

.event-date, .event-location {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Sustainability секция */
.sustainability {
  padding: var(--section-spacing) 0;
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.sustainability::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/texture-light.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: var(--z-negative);
}

.sustainability-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.sustainability-image {
  flex: 0 0 45%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
}

.sustainability-text {
  flex: 0 0 50%;
}

.sustainability-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  gap: 2rem;
}

.sustainability-stats .stat-widget {
  flex: 1;
  padding: 2rem;
}

.sustainability-stats .stat-number {
  font-size: 3.6rem;
}

/* Insights секция */
.insights {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

/* Clientele секция */
.clientele {
  padding: var(--section-spacing) 0;
  background-color: var(--off-white);
}

.testimonials-slider {
  margin-bottom: 6rem;
}

.testimonial {
  padding: 4rem;
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
  margin-bottom: 3rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.8rem;
  margin-bottom: 3rem;
  position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 5rem;
  color: var(--accent-color);
  line-height: 0;
  position: absolute;
}

.testimonial-content p::before {
  left: -2rem;
  top: 2rem;
}

.testimonial-content p::after {
  right: -2rem;
  bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  margin-right: 2rem;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.author-info p {
  margin-bottom: 0;
  color: var(--secondary-color);
}

.clients-logos {
  text-align: center;
  margin-top: 5rem;
}

.clients-logos h3 {
  margin-bottom: 3rem;
}

.logos-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.logos-grid img {
  height: 8rem;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-medium);
}

.logos-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
}

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

.contact-container {
  display: flex;
  gap: 5rem;
}

.contact-info {
  flex: 0 0 40%;
}

.contact-form {
  flex: 0 0 55%;
  padding: 4rem;
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
}

.contact-details {
  list-style: none;
  margin-bottom: 3rem;
}

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

.contact-details i {
  margin-right: 1.5rem;
  color: var(--primary-color);
  font-size: 2rem;
}

.map-container {
  width: 100%;
  height: 30rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 6rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-logo {
  flex: 0 0 100%;
  max-width: 30rem;
}

.footer-logo h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1;
  gap: 3rem;
}

.footer-column {
  min-width: 15rem;
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 0.2rem;
  background-color: var(--primary-color);
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 1rem;
}

.footer-column a {
  color: var(--light-gray);
  transition: color var(--transition-medium);
}

.footer-column a:hover {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links a {
  display: inline-block;
  transition: color var(--transition-medium);
  margin-bottom: 1rem;
}

.social-links a:hover {
  color: var(--primary-light);
}

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

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem;
  background-color: var(--off-white);
}

.success-content {
  max-width: 60rem;
  padding: 5rem;
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
}

.success-icon {
  font-size: 8rem;
  color: var(--success);
  margin-bottom: 3rem;
}

.success-content h1 {
  margin-bottom: 2rem;
  color: var(--dark);
}

.success-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

/* Terms & Privacy Pages */
.page-content {
  padding: 12rem 0 6rem;
  background-color: var(--off-white);
}

.page-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem;
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
}

.page-container h1 {
  margin-bottom: 4rem;
  text-align: center;
}

.page-container h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.page-container p {
  margin-bottom: 2rem;
}

/* Скролл-зависимые анимации */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Медиа-запросы */
@media (max-width: 1200px) {
  .sustainability-content {
    flex-direction: column;
  }
  
  .sustainability-image,
  .sustainability-text {
    flex: 0 0 100%;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form {
    flex: 0 0 100%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 60%;
  }
  
  .hero {
    padding: 12rem 0;
  }
  
  .accolades-content {
    gap: 3rem;
  }
  
  .events-grid,
  .insights-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .footer-content {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 57.5%;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .stats-container {
    gap: 2rem;
  }
  
  .stat-widget {
    width: calc(50% - 2rem);
    padding: 2rem;
  }
  
  .sustainability-stats {
    flex-direction: column;
  }
  
  .testimonial {
    padding: 3rem 2rem;
  }
  
  .testimonial-content p::before,
  .testimonial-content p::after {
    display: none;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 4rem;
  }
  
  .footer-column {
    width: 100%;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .hero-content h1 {
    font-size: 3.6rem;
  }
  
  .hero-content p {
    font-size: 1.8rem;
  }
  
  .stat-widget {
    width: 100%;
  }
  
  .events-grid,
  .insights-grid,
  .workshops-grid,
  .instructors-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-author img {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .logos-grid {
    gap: 3rem;
  }
  
  .logos-grid img {
    height: 6rem;
  }
  
  .contact-form {
    padding: 3rem 2rem;
  }
}

/* Cookie Consent Styles */
#cookieConsent {
  background-color: rgba(0,0,0,0.85);
  color: white;
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: var(--z-highest);
}

#acceptCookies {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color var(--transition-medium);
}

#acceptCookies:hover {
  background-color: var(--accent-dark);
}
.mobile-menu-toggle{
  display: none;
}