

/* ==== Section de base ==== */
.section_basic.background-secondary {
    background-color: rgba(0, 0, 0, 0.95); /* Optionnel si texture semi-transparente */
    padding: 3rem;
    max-width: 900px;
    margin: 3rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 120px; /* Remplace [n] par la valeur souhaitée */
    
    line-height: 1.7;
  }
  
  /* ==== Titres ==== */
  .section_basic.background-secondary h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(11, 15, 112, 0.4); /* Légère ligne rouge */
    padding-bottom: 0.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #D4AF37, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .section_basic.background-secondary h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    background: linear-gradient(45deg, #D4AF37, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* ==== Paragraphes ==== */
  .section_basic.background-secondary p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color : #ffffff;
  }
  
  /* ==== Listes ==== */
  .section_basic.background-secondary ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: disc;
    color : #ffffff;
  }
  
  .section_basic.background-secondary li {
    margin-bottom: 0.5rem;
    color : #ffffff;
  }
  
  /* ==== Liens ==== */
  .section_basic.background-secondary a {
    color: #FFD700;
    text-decoration: underline;
  }
  
  .section_basic.background-secondary a:hover {
    text-decoration: none;
    color: #FFD700; /* Couleur dorée au survol */
    color: #c2a506; 
  }
  
  /* ==== Responsive ==== */
  @media (max-width: 768px) {
    .section_basic.background-secondary {
      padding: 2rem;
    }
  
    .section_basic.background-secondary h1 {
      font-size: 1.8rem;
    }
  
    .section_basic.background-secondary h2 {
      font-size: 1.3rem;
    }
  }
  