/*==============================
   HEADER SECTIONS (CGV, Mentions, Politique)
===============================*/
.custom-section-header {
  height: 350px;
  padding: 64px 14px;
  background: linear-gradient(to bottom, pink, var(--pink2-color));
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-section-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.custom-section-header .title {
  font-size: 2rem;
  font-weight: 200;
  color: var(--dark);
  margin: 0;
  text-align: center;
}

.custom-section-header .description {
  font-size: 1.25rem;
  color: var(--dark);
  margin-top: 1.5rem;
  text-align: center;
}

/* Responsive header */
@media screen and (max-width: 560px) {
  .custom-section-header {
    height: 280px;
    margin-top: 60px;
  }

  .custom-section-header .title {
    font-size: 2rem;
  }

  .custom-section-header .description {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 355px) {
  .custom-section-header {
    height: 300px;
  }

  .custom-section-header .title {
    font-size: 1.6rem;
  }

  .custom-section-header .description {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 300px) {
  .custom-section-header {
    height: 300px;
  }

  .custom-section-header .title {
    font-size: 1.4rem;
  }

  .custom-section-header .description {
    font-size: 1rem;
  }
}

/*==============================
   CONTENT SECTIONS (CGV, Mentions, Politique)
===============================*/
.section-content {
  padding: 64px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
   background-color: #FEFCE8;
   border-bottom: 1px solid #b4b4b4;
}

.section-content h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

/* Bloc avec icône */
.section-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.section-icon {
  flex: 0 0 50px;
  font-size: 1.8rem;
  color: #e63946;
  margin-right: 15px;
}

.section-block h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #222;
}

.section-block p,
.section-block ul {
  margin: 0 0 10px 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.section-block ul {
  padding-left: 20px;
}

/* Séparateur */
.section-content hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

/* Liens */
.section-block a {
  color: #e63946;
  text-decoration: none;
}

.section-block a:hover {
  text-decoration: underline;
}

/* Responsive bloc */
@media (max-width: 768px) {
  .section-block {
    flex-direction: column;
  }

  .section-icon {
    margin-bottom: 10px;
  }
}
