/* Base */
:root {
  --primary-gradient: linear-gradient(to right, #ff7e5f, #feb47b);
  --text-light: #eeeeee;
  --text-dark: #333333;
  --bg-dark: #0d0127;
  --bg-darker: #170a56;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  color: #eeeeee;
}
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.2;
  overflow-x: hidden;
}

/* Styles globaux pour le corps lorsque le menu est ouvert */
body.no-scroll {
  overflow: hidden;
}

/* Utility Classes */
.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  padding: 0 var(--spacing-sm);
}

.highlighted-text {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hamburger Menu Icon - Caché par défaut */
.hamburger-menu {
  display: none;
  z-index: 1001;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(to right, #1ca4dd, #a4d4e8);
  backdrop-filter: blur(8px);
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: inset 0 -6px 5px rgba(0, 0, 0, 0.1);
  transition: padding 0.3s ease;
}

.main-header.scrolled {
  padding: 0.2rem var(--spacing-md);
}

.main-header.scrolled .logo {
  width: 35px;
  height: 35px;
  border-radius: 5px;
}

.main-header.scrolled .title {
  /* clamp(min, preferred, max) : le titre s'adapte entre 1.2rem et 2rem */
  font-size: clamp(0.7rem, 3vw, 1.5rem);
}

.header-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.header-left a {
  text-decoration: none;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Pacifico", serif;
  color: var(--text-light);
  transition: all 0.3s ease;
}

/* Navigation */
.header-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-menu ul {
  display: flex;
  list-style: none;
  gap: 4rem;
}

.header-menu a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.header-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.header-menu a:hover::after {
  width: 100%;
}

/* Language Selector */
/* Menu de langue - Style moderne et élégant */
.language-menu {
  position: relative;
  display: inline-block;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.language-icon {
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  padding: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  filter: brightness(0.1);
}

.language-icon:hover {
  transform: scale(1.05);
  filter: brightness(0.3);
}

.language-list {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 180px;
  background: rgba(28, 28, 35, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.95);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  overflow-y: auto;
}

.language-list::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: rgba(28, 28, 35, 0.95);
  transform: rotate(45deg);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.language-list.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: var(--text-light, #fff);
  position: relative;
  overflow: hidden;
}

.language-option:not(:last-child) {
  margin-bottom: 4px;
}

.language-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.language-option:active {
  transform: scale(0.98);
}

.language-option img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-option span {
  color: var(--text-light, #fff);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Animation d'entrée pour chaque option */
.language-option {
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation différée pour chaque option */
.language-option:nth-child(1) {
  animation-delay: 0.1s;
}
.language-option:nth-child(2) {
  animation-delay: 0.15s;
}
.language-option:nth-child(3) {
  animation-delay: 0.2s;
}
.language-option:nth-child(4) {
  animation-delay: 0.25s;
}
.language-option:nth-child(5) {
  animation-delay: 0.3s;
}

/* Animation du hamburger en croix */
.hamburger-menu.is-active .hamburger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger-menu.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Content Section */
.content-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  align-items: center;
  margin-top: 3rem;
}

.text-container h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-family: "Chango", sans-serif;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-sm);
  text-align: left;
}

.text-container h2 {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  color: var(--text-light);
  line-height: 1.5;
}

.image-container img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

/* Download Section */
.download-section {
  max-width: 70%;
  margin: 20px auto;
  padding: 20px 40px; /* Réduit de 60px à 20px pour le padding vertical */
  background-color: rgb(238, 238, 238);
  border-radius: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.download-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem; /* Réduit l'espace entre les éléments */
  width: 100%;
}

.section-title {
  position: relative;
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.qr-code {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--spacing-sm);
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.qr-code img {
  width: 120px;
  height: auto;
}

.section-title:hover .qr-code {
  display: block;
}

/* Store Buttons */
.store-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  width: 180px;
  height: 48px;
  transition: transform 0.2s ease;
}

.store-box:hover {
  transform: translateY(-2px);
}

.store-box.google {
  background-color: black;
  border: 2px solid white;
  color: white;
}

.store-box.apple {
  border: 2px solid black;
  background-color: white;
  color: black;
}

.store-logo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.store-text small {
  font-size: 0.75rem;
  color: currentColor;
  opacity: 0.8;
  white-space: nowrap;
}

.store-text p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: currentColor;
  white-space: nowrap;
}

/* Reviews */
.reviews {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.review-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-dark);
}

.stars {
  display: flex;
  gap: 2px;
}

.stars span {
  color: gold;
  font-size: 1.375rem;
}

/* Stories Section */
.stories-section {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  color: var(--text-light);
}

.stories-title {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
  position: relative;
  padding-top: 70px;
  padding-bottom: var(--spacing-lg);
}

.stories-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50vw;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(238, 238, 238, 0),
    rgba(238, 238, 238, 0.5) 20%,
    rgba(238, 238, 238, 0.5) 80%,
    rgba(238, 238, 238, 0)
  );
}

.stories-description {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  padding-top: var(--spacing-md);
}

/* Features Section */
.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.feature-image {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.feature-text {
  font-size: 1.125rem; /* Taille ajustée à 1.6rem */
  line-height: 1.6;
  padding: 20px;
  color: var(--text-light);
  text-align: center;
}

.feature-text .highlighted-text {
  font-size: 1.6rem; /* Garde la taille plus grande pour le texte en surbrillance */
  font-weight: bold;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Vidéos dans la section Features */
.features-section .feature video {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Video Section */
.video-section {
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
}

.video-section video {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#fullscreen-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 10px;
  display: none; /* Caché par défaut */
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
  width: 44px;
  height: 44px;
  z-index: 10;
  color: white;
}

#fullscreen-button svg {
  width: 20px;
  height: 20px;
}

#fullscreen-button:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* Parameters Section */
.parameters-section {
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  color: var(--text-light);
}

.parameters-title {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
  position: relative;
  padding-top: 70px;
  padding-bottom: var(--spacing-lg);
}
.parameters-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50vw;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(238, 238, 238, 0),
    rgba(238, 238, 238, 0.5) 20%,
    rgba(238, 238, 238, 0.5) 80%,
    rgba(238, 238, 238, 0)
  );
}

.parameters-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--spacing-lg);
  align-items: center;
  padding-top: 2rem;
}

.parameters-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}

.parameters-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  text-align: left;
}
.parameters-text .highlighted-text {
  font-size: 1.6rem; /* Garde la taille plus grande pour le texte en surbrillance */
  font-weight: bold;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.parameters-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* Multilingual Section */
.multilingual-section {
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  color: var(--text-light);
}

.multilingual-title-container {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
  position: relative;
  padding-top: 70px;
  padding-bottom: var(--spacing-lg);
}
.multilingual-title-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50vw;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(238, 238, 238, 0),
    rgba(238, 238, 238, 0.5) 20%,
    rgba(238, 238, 238, 0.5) 80%,
    rgba(238, 238, 238, 0)
  );
}

.multilingual-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.5;
  padding-top: 2rem;
}

.multilingual-subtitle {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
}

.flags-row {
  display: flex;
  overflow-x: auto;
  max-width: 90%;
  border-radius: 10px;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  margin: 0 auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: rgb(238, 238, 238);
}

.flags-row::-webkit-scrollbar {
  display: none;
}

.flag {
  width: 100px;
  height: auto;
  scroll-snap-align: start;
}

.multicultural-text {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: bold;
  margin: var(--spacing-lg) 0;
}

.heroes-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0 auto;
}

.hero-text {
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: left;
  text-align: center;
}
.hero-text .highlighted-text {
  font-size: 1.6rem; /* Garde la taille plus grande pour le texte en surbrillance */
  font-weight: bold;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Profiles Section */
.profiles-section {
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  color: var(--text-light);
}

.profiles-title {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
  position: relative;
  padding-top: 70px;
  padding-bottom: var(--spacing-lg);
}
.profiles-title ::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50vw;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(238, 238, 238, 0),
    rgba(238, 238, 238, 0.5) 20%,
    rgba(238, 238, 238, 0.5) 80%,
    rgba(238, 238, 238, 0)
  );
}

.profiles-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--spacing-lg);
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.profiles-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  font-size: 1.125rem;
}

.profiles-text p {
  text-align: left;
  margin: 0;
  padding-left: var(--spacing-lg);
  line-height: 1.8;
}

.profiles-text .highlighted-text {
  font-size: 1.6rem;
}

.profiles-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}

.profiles-footer-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  margin-top: var(--spacing-lg);
  padding: 0 2rem;
  margin-bottom: var(--spacing-lg);
}

/* Try App Section */
.try-app-section {
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
}

.try-app-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-lg);
  background-color: rgb(238, 238, 238);
  border-radius: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.try-app-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
  margin-bottom: var(--spacing-lg);
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

/* Reviews Section */
.reviews-section {
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
}

.reviews-title {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
  position: relative;
  padding-top: 70px;
  padding-bottom: var(--spacing-lg);
}
.reviews-title ::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50vw;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(238, 238, 238, 0),
    rgba(238, 238, 238, 0.5) 20%,
    rgba(238, 238, 238, 0.5) 80%,
    rgba(238, 238, 238, 0)
  );
}

.reviews-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 350px;
  gap: var(--spacing-md);
  overflow-x: auto;
  padding: var(--spacing-md) 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-row::-webkit-scrollbar {
  display: none;
}

.review-container {
  scroll-snap-align: start;
  background-color: rgb(238, 238, 238);
  border-radius: 10px;
  padding: var(--spacing-md);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
  display: flex;

  justify-content: center;
}

.review-author {
  font-size: 0.875rem;
  font-weight: bold;
  color: gold;
  margin: 0;
  padding: var(--spacing-sm) 0;
  height: 2.5rem; /* Hauteur fixe pour tous les noms d'auteurs */
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-stars {
  font-size: 1.25rem;
  color: gold;
  margin-top: auto;
}
/* FAQ Section */
/* FAQ Section */
.faq-section {
  padding: 80px 20px 0px 20px;
  background-color: #0d0127;
  color: #ffffff;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

.faq-title {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
  position: relative;
  padding-top: 70px;
  padding-bottom: var(--spacing-lg);
}
.faq-title ::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50vw;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(238, 238, 238, 0),
    rgba(238, 238, 238, 0.5) 20%,
    rgba(238, 238, 238, 0.5) 80%,
    rgba(238, 238, 238, 0)
  );
}

.faq-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px; /* Augmentation de l'espace entre les questions et l'image */
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
}

.faq-questions {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  height: auto;
  overflow: visible;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  transform: translateY(0);
  transition: all var(--transition);
  position: relative;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 24px;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}

.faq-question::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.faq-question.active::before {
  opacity: 0.1;
}

.faq-question span {
  position: relative;
  z-index: 1;
}

.faq-question::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 6v6m0 0v6m0-6h6m-6 0H6'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition);
  position: relative;
  z-index: 1;
}

.faq-question.active::after {
  transform: rotate(45deg) scale(1.1);
}

.faq-answer {
  background: #eee;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: #333;
  transform-origin: top;
  transform: scaleY(0);
  transition: all var(--transition);
  padding: 0 24px;
  line-height: 1.6;
  position: relative;
}

.faq-answer.active {
  max-height: none;
  opacity: 1;
  transform: scaleY(1);
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation d'apparition */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.faq-image {
  flex: 0 0 30%; /* Réduction de la largeur de l'image */
  display: flex;
  justify-content: center;
  align-items: center; /* Changé de flex-start à center */
  align-self: center;
  height: fit-content;
}

.faq-image img {
  width: 100%;
  height: auto;
  max-width: 350px; /* Réduction légère de la taille max de l'image */
}

/* Styles existants restent inchangés */

/* Footer Styles */
.footer {
  color: var(--text-dark);
  padding: 4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto 2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  width: 100%;
  color: var(--text-light);
  margin-top: 2rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  background: linear-gradient(to right, #1ca4dd, #a4d4e8);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 1.5rem 0;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-bottom-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
  opacity: 1;
}







/* Legal Pages */
.legal-content {
  max-width: 1000px;
  margin: 150px auto 4rem;
  padding: 2rem;
  border-radius: 15px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.legal-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Chango", sans-serif;
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.legal-content h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-top: var(--spacing-md);
}

.legal-content h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-top: var(--spacing-sm);
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

.legal-content ul {
  list-style-position: inside;
  padding-left: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.legal-content a {
  color: #a4d4e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #fff;
  text-decoration: underline;
}

.legal-content hr {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: var(--spacing-md) 0;
}

/* Educational Section */
.educational-section {
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  color: var(--text-light);
  margin: 4rem auto;
  position: relative;
}

.educational-section::before {
  display: none;
}

.educational-title {
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
  position: relative;
  padding-top: 70px;
  padding-bottom: var(--spacing-lg);
}

.educational-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50vw;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(238, 238, 238, 0),
    rgba(238, 238, 238, 0.5) 20%,
    rgba(238, 238, 238, 0.5) 80%,
    rgba(238, 238, 238, 0)
  );
}

.educational-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  text-align: left;
  padding-top: 3rem;
}

.educational-text {
  flex: 2;
  padding-left: var(--spacing-lg);
}

.educational-image {
  flex: 1;
  text-align: center;
}

.educational-image img {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-inline: auto;
}

.educational-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.educational-section p,
.educational-section li {
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.educational-section ul {
  list-style-type: "• ";
  padding-left: 1.5rem;
}

.educational-content .highlighted-text,
.educational-categories .highlighted-text {
  font-size: 1.6rem;
}

.educational-categories {
  margin-top: 10rem;
  margin-bottom: 5rem;
}

.educational-intro-text {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}

.educational-categories-text {
  flex: 2;
  padding-left: var(--spacing-lg);
}

.educational-categories-image {
  text-align: center;
  margin-bottom: 2rem;
}

.educational-categories-image img {
  width: 100%;
  max-width: 1000px;
  border-radius: 10px;
}

.category-details-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.category-details-container .category-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.category-item ul {
  display: inline-block;
  text-align: left;
  margin-top: 1rem;
}

.category-item li {
  margin-bottom: 0.25rem;
}

.section-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(238, 238, 238, 0),
    rgba(238, 238, 238, 0.5) 20%,
    rgba(238, 238, 238, 0.5) 80%,
    rgba(238, 238, 238, 0)
  );
  margin: 2rem 0;
}

.educational-categories h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.educational-categories h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.educational-categories .category-subtitle {
  font-style: italic;
  margin-bottom: 1rem;
}

.language-video {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block; /* Assure que la vidéo prend toute la largeur du conteneur */
}

.language-video[style*="display: none"] {
  display: none !important;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#mute-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
  width: 44px;
  height: 44px;
  z-index: 10;
}

#mute-button:hover {
  background: rgba(0, 0, 0, 0.7);
}

#mute-button svg {
  width: 24px;
  height: 24px;
}

.educational-image img,
.educational-image video {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Cookie Consent Banner */
:root {
  --cc-bg: var(--bg-dark);
  --cc-text: var(--text-light);
  --cc-btn-primary-bg: var(--primary-gradient);
  --cc-btn-primary-text: white;
  --cc-btn-secondary-bg: #4b5563;
  --cc-btn-secondary-text: var(--text-light);
  --cc-font-family: "Host Grotesk", sans-serif;
}

.cc--main .cm__dialog {
  background: var(--cc-bg);
  color: var(--cc-text);
  font-family: var(--cc-font-family);
}

.cc--main .cm__btn {
  font-family: var(--cc-font-family);
}

.cc--main .cm__btn--primary {
  background: var(--cc-btn-primary-bg);
  color: var(--cc-btn-primary-text);
  border: none;
}

.cc--main .cm__btn--secondary {
  background: var(--cc-btn-secondary-bg);
  color: var(--cc-btn-secondary-text);
  border: none;
}

.cc--main a {
  color: #feb47b;
  text-decoration: underline;
}

.cc--main a:hover {
  text-decoration: underline;
  color: var(--text-light);
}

