.inscription-page {
  padding: 0rem 0 2rem;
}

.page-title {
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.content-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 0rem 2.5rem;
  min-height: 300px;
  position: relative;
}

.content-loader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-loader img {
  width: 80px;
  animation: spin 1.2s linear infinite;
  opacity: 0.7;
}

.hidden {
  display: none;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.content-body p {
  margin-bottom: 1rem;
}

.content-body ul {
  margin-left: 1.2rem;
  margin-bottom: 1rem;
}

.content-body strong {
  color: var(--accent);
}

.content-wrapper {
  background: transparent;
}

.content-body {
  max-width: 900px;
  margin: 0 auto;
}

.content-body p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.content-body strong u {
  color: var(--accent);
}

.content-body ul {
  margin: 1.5rem 0;
  padding-left: 1rem;
}

.content-body li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.2rem;
}

.content-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.dossier-cta {
  margin-top: 3rem;
  text-align: center;
}

.page-cta {
  text-align: center;
  padding: 0;
}

.page-cta .container {
  display: flex;
  justify-content: center;
}
.cta-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.cta-box h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Outline version propre */
.btn-outline {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  transition: 0.25s ease;
}

/* Niveau normal */
.content-body li {
  margin-bottom: 0.5rem;
}

/* Niveau indenté (cotisation 1er, 2e, 3e) */
.content-body li.ql-indent-1 {
  margin-left: 1.5rem;
  opacity: 0.85;
  font-size: 0.95rem;
}

/* Si jamais tu as ql-indent-2 */
.content-body li.ql-indent-2 {
  margin-left: 3rem;
  opacity: 0.75;
  font-size: 0.9rem;
}

.content-body li.ql-indent-1::before {
  content: "– ";
  color: rgba(255,255,255,0.5);
}



  .content-body ul {
    margin-left: 0.75rem !important;
  }

@media (max-width: 992px) {
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
  }

  .content-body ul {
    margin-left: 0.3rem !important;
  }

  .section{
    padding-top: 1em !important;
    margin-top: 5em !important;
    padding-bottom: 2em !important;
  }

  .content-wrapper {
    padding: 1em !important;
    padding-top: 1.5em !important;
    padding-bottom: 1.5em !important;
  }

  .inscription-page {
    padding: 2rem 0 2rem !important;
  }
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius);
}

.content-body h4 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-body p {
  margin-bottom: 1rem;
}

.content-body ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 1rem auto 0;
  background: var(--accent);
  border-radius: 2px;
}

.content-body p strong {
  color: inherit;
  font-weight: 600;
}

.content-body a {
  color: var(--accent);
}

.content-body strong {
  background: linear-gradient(
    transparent 70%, 
    rgba(58,166,201,0.2) 70%
  );
}
