/* =============================================
   SECTION SEO DE BAS DE PAGE — fs-seo
   ============================================= */
.fs-seo {
  width: 100%;
  background-color: #0A0118; /* Fond sombre */
  color: #ECE9F2;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.fs-seo__inner {
  max-width: 900px; /* Largeur idéale pour la lecture de longs textes */
  margin: 0 auto;
}

.fs-seo__main-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.fs-seo__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.fs-seo__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 2rem 0 0.5rem 0;
  line-height: 1.3;
}

.fs-seo__content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #ECE9F2;
  margin: 0;
}

/* Listes à puces */
.fs-seo__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fs-seo__list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  position: relative;
  padding-left: 1.5rem;
  color: #ECE9F2;
}

.fs-seo__list li::before {
  content: "•";
  color: #FF7FC2; /* Accentuation rose pour les puces */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}

/* Liens internes */
.fs-seo__content a {
  color: #FF7FC2;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.fs-seo__content a:hover {
  color: #b47cfd;
}

/* Version mobile */
@media (max-width: 768px) {
  .fs-seo {
    padding: 4rem 1.25rem;
  }
}