


/* FAQ */
/* Conteneur principal */
.faq-section {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 15px;

}

/* Titre Furgan */
.furgan-title.style-02 {
  text-align: center;
  margin-bottom: 30px;
}

/* Bloc de chaque question */
.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Résumé (la question) */
.faq-item summary {
  cursor: pointer;
  padding: 15px 50px 15px 20px;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  list-style: none;
  position: relative;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  min-height: 50px;
}

/* Supprime le triangle natif */
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::marker {
  content: "";
}

/* Hover */
.faq-item summary:hover {
  background: #f9f9f9;
}

/* Icônes + et − */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--couleur-accent );
  transition: transform 0.2s, color 0.2s;
  font-weight: bold;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--couleur-accent );
}

/* Réponse */
.faq-item p {
  padding: 10px 20px 20px;
  margin: 0;
  color: #555;
  line-height: 1.6;
  border-top: 1px solid #eee;
}

/* Animation */
details[open] p {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Fin FAQ */

/* Contact */
.contact-form-wrapper {
  display: flex;
  justify-content: center;
}

.contact-form-wrapper .wpcf7 {
  width: 100%;
  max-width: 600px;
}

/* Fin Contact */

/* Style Commun aux pages statiques */

   .page-statique {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: "Jost", sans-serif;
        color: var(--couleur-body);
        line-height: 1.7;
    }

    h2.titre-statique {
        font-size: 28px;
        color: #000;
        margin-bottom: 10px;
    }

    div.petit-trait-vert {
        width: 50px;
        height: 2px;
        background-color: var(--couleur-accent );
        margin: 10px 0 20px 0;
    }

    div.appel-action {
        margin: 20px 0 40px 0;
        text-align: center;
    }

    .appel-action a {
        background-color: var(--couleur-accent );
        color: #fff;
        padding: 12px 25px;
        border-radius: 5px;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
    }

    /*  Responsive styles  */

    @media (max-width: 768px) {
        .page-statique {
            padding: 15px;
        }

        .page-statique h2 {
            font-size: 24px;
        }

        .page-statique ul {
            padding-left: 15px;
        }

        .page-statique a {
            padding: 10px 20px;
        }
    }

    @media (max-width: 480px) {
        .page-statique {
            padding: 10px;
        }

        .page-statique h2 {
            font-size: 22px;
        }

        .page-statique a {
            padding: 8px 16px;
            font-size: 14px;
        }
    }