/* Styles Généraux Harmonisés */
body {
    margin: 0;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Permet de défiler vers le bas si la liste est longue */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0f172a;
    box-sizing: border-box;
  }
  
  /* Image d'arrière-plan identique */
  .red-heeler {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.65); /* Un peu plus sombre pour une meilleure lecture des longs textes */
  }
  
  /* Conteneur Global Réutilisant le Style Principal */
  .faq-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  /* En-tête de la Page */
  .faq-header {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .text-decale {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0 0 10px 0;
  }
  
  .text-decale-left-up {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin: 0;
  }
  
  /* Grille des Questions (Disposition Flexible) */
  .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Cartes FAQ (Style Glassmorphism Identique au Rectangle Principal) */
  .faq-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }
  
  /* Effet lumineux discret au survol de la question */
  .faq-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 128, 255, 0.4); /* Rappel subtil de la couleur 0x0080FF de vos embeds */
  }
  
  /* Titres des Questions */
  .faq-title {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
  }
  
  /* Contenu des Réponses */
  .faq-content {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
  }
  
  .faq-content p {
    margin: 0 0 12px 0;
  }
  
  .faq-content p:last-child {
    margin-bottom: 0;
  }
  
  .faq-content strong {
    color: #38bdf8; /* Couleur cyan pour faire ressortir les prix / points clés */
    font-weight: 600;
  }
  
  /* Listes à puces et numérotées stylisées */
  .faq-content ul, .faq-content ol {
    margin: 10px 0;
    padding-left: 20px;
  }
  
  .faq-content li {
    margin-bottom: 8px;
  }
  
  .faq-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5) !important;
    border-left: 3px solid rgba(0, 128, 255, 0.5);
    padding-left: 12px;
    margin-top: 15px !important;
  }
  
  /* Bouton Retour Interactif */
  .link.back-btn {
    align-self: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
    margin-top: 20px;
  }
  
  .link.back-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-4px);
  }
  