:root {
  /* Цветовая палитра в стиле раздельно-дополнительной схемы */
  --primary: #3a5cff;
  --primary-dark: #2940c0;
  --primary-light: #6e88ff;
  --secondary: #ff5e3a;
  --secondary-dark: #e04627;
  --secondary-light: #ff8066;
  --accent-1: #00c8b4;
  --accent-1-dark: #009d8c;
  --accent-2: #ffd166;
  --accent-2-dark: #e6b84d;
  
  /* Нейтральные цвета */
  --dark: #2b2d42;
  --dark-medium: #555768;
  --medium: #8d99ae;
  --light-medium: #c5cad3;
  --light: #edf2f4;
  --white: #ffffff;
  
  /* Брутализм */
  --brutalism-shadow: 5px 5px 0 rgba(0, 0, 0, 0.8);
  --brutalism-border: 3px solid var(--dark);
  
  /* Типографика */
  --heading-font: 'Raleway', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Размеры */
  --container-max: 1200px;
  --container-padding: 2rem;
  --section-spacing: 5rem;
  --element-spacing: 1.5rem;
  
  /* Анимации */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
}

/* Базовые стили */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  margin: 1rem auto 0;
}

/* Кнопки */
.btn, button, input[type='submit'] {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-size: 1rem;
  text-decoration: none;
}

.primary-btn {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.8);
  color: var(--white);
  text-decoration: none;
}

.secondary-btn {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
}

.secondary-btn:hover {
  background-color: var(--secondary-dark);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.8);
  color: var(--white);
  text-decoration: none;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Утилиты для карточек */
.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-medium);
  margin: 0 auto;
}

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

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

/* Стиль Neo Brutalism */
.neo-brutalism {
  border: var(--brutalism-border);
  box-shadow: var(--brutalism-shadow);
  background-color: var(--light);
  padding: 2rem;
  position: relative;
}

/* Header и навигация */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 60px;
}

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

.desktop-nav ul li a {
  color: var(--dark);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.desktop-nav ul li a:hover {
  color: var(--primary);
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--white);
  z-index: 999;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 2rem;
}

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

.mobile-nav ul li a {
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  padding: 7rem 0 5rem;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(43, 45, 66, 0.8), rgba(58, 92, 255, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

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

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--white);
}

/* Vision Section */
.vision-section {
  padding: var(--section-spacing) 0;
}

.vision-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.vision-text {
  flex: 1;
}

.vision-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.vision-image img {
  border-radius: 8px;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
  max-width: 100%;
}

/* Courses Section */
.courses-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light);
}

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

/* Statistics Section */
.statistics-section {
  padding: var(--section-spacing) 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
}

.statistics-section .section-title {
  color: var(--white);
}

.statistics-section .section-title::after {
  background-color: var(--white);
}

.statistics-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.stat-icon {
  margin-bottom: 1rem;
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stat-icon img {
  border-radius: 50%;
  margin: 0 auto;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-family: var(--heading-font);
}

.stat-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

/* Insights Section */
.insights-section {
  padding: var(--section-spacing) 0;
}

.insights-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.insights-text {
  flex: 1;
}

.insights-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.insights-image img {
  border-radius: 8px;
  box-shadow: var(--brutalism-shadow);
  border: var(--brutalism-border);
  max-width: 100%;
}

/* Resources Section */
.resources-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium);
}

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

.resource-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.resource-card .card-content {
  padding: 1.5rem;
  text-align: center;
}

.resource-card .card-content h3 {
  color: var(--dark);
}

.resource-card .card-content p {
  color: var(--dark-medium);
}

/* Community Section */
.community-section {
  padding: var(--section-spacing) 0;
}

.community-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.community-text {
  max-width: 800px;
  margin: 0 auto;
}

.community-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gallery-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium);
}

.gallery-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

/* Team Section */
.team-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-section .card {
  background-color: var(--white);
}

.team-section .card-image {
  height: 300px;
}

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

/* Awards Section */
.awards-section {
  padding: var(--section-spacing) 0;
}

.awards-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.awards-grid {
  display: grid;
  grid-gap: 2rem;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium);
}

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

.award-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.award-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.award-info {
  flex-grow: 1;
}

.award-info h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Partners Section */
.partners-section {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.partners-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: center;
}

.partner-logo {
  flex-basis: calc(33.333% - 3rem);
  padding: 1rem;
  transition: transform var(--transition-medium);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.partner-logo:hover {
  transform: scale(1.05);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  padding: var(--section-spacing) 0;
}

.contact-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

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

.contact-form-container {
  flex: 1;
  width: 99%;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--medium);
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(58, 92, 255, 0.1);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-logo img {
  max-width: 150px;
  margin-bottom: 1rem;
}

.footer-links h3,
.footer-social h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-social ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a,
.footer-social ul li a {
  color: var(--light-medium);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-social ul li a {
  display: flex;
  align-items: center;
}

.footer-social ul li a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-social ul li:nth-child(1) a::before {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" fill="%23edf2f4"/></svg>');
}

.footer-social ul li:nth-child(2) a::before {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" fill="%23edf2f4"/></svg>');
}

.footer-social ul li:nth-child(3) a::before {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" fill="%23edf2f4"/></svg>');
}

.footer-social ul li:nth-child(4) a::before {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" fill="%23edf2f4"/></svg>');
}

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

.footer-bottom p {
  margin-bottom: 0;
  color: var(--medium);
  font-size: 0.9rem;
}

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

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

.success-message {
  margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: var(--section-spacing);
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Анимации при скролле */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* Счетчик чисел в статистике */
@keyframes count-up {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.stat-number.counting {
  animation: count-up 2s ease-out;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .vision-content,
  .insights-content,
  .contact-content {
    flex-direction: column;
  }
  
  .vision-image,
  .insights-image {
    margin-top: 2rem;
  }
  
  .award-item {
    flex-direction: column;
    text-align: center;
  }
  
  .award-icon {
    margin-bottom: 1rem;
  }
  
  .partner-logo {
    flex-basis: calc(50% - 3rem);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .statistics-widgets {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .partner-logo {
    flex-basis: 100%;
  }
}

/* Classes pour les liens Lire Plus */
.read-more {
  display: inline-block;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-right: 1.5rem;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--secondary-dark);
  text-decoration: none;
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}

/* Mobile navigation animation */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

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