.elementor-2422 .elementor-element.elementor-element-eef62c7{--display:flex;}/* Start custom CSS for wp-widget-custom_html, class: .elementor-element-0acf31d */.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'VotrePolice', sans-serif;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

details {
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

summary {
    font-weight: 600;
    color: #2c3e50;
    list-style: none; /* Cache la flèche par défaut sur certains navigateurs */
    font-size: 1.1rem;
    position: relative;
    padding-right: 30px;
}

/* Petite flèche personnalisée en CSS */
summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-weight: bold;
    color: #27ae60; /* Vert Diet Your Life */
    font-size: 1.5rem;
    line-height: 1rem;
}

details[open] summary::after {
    content: '-';
}

/* Animation d'ouverture douce */
details[open] .faq-content {
    animation: fadeIn 0.5s ease;
}

.faq-content {
    padding-top: 10px;
    color: #555;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */