/* FAQ SECTION STIJLEN */

/* FAQ Section Styling */
.peppol-homepage-isolated .faq-section {
    background: white !important;
    padding: 60px 40px !important;
    margin-bottom: 40px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e2e8f0 !important;
}

.peppol-homepage-isolated .faq-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.peppol-homepage-isolated .faq-container {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.peppol-homepage-isolated .faq-item {
    background: #f8fafc !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.peppol-homepage-isolated .faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    border-color: #D2691E !important;
}

.peppol-homepage-isolated .faq-question {
    padding: 25px !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    background: #f8fafc !important;
}

.peppol-homepage-isolated .faq-question:hover {
    background: #f1f5f9 !important;
}

.peppol-homepage-isolated .faq-question h4 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
}

.peppol-homepage-isolated .faq-toggle {
    color: #D2691E !important;
    font-size: 24px !important;
    font-weight: 300 !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    margin-left: 20px !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(210, 105, 30, 0.1) !important;
}

.peppol-homepage-isolated .faq-toggle:hover {
    background: rgba(210, 105, 30, 0.2) !important;
    transform: scale(1.1) !important;
}

.peppol-homepage-isolated .faq-answer {
    padding: 0 25px 25px 25px !important;
    color: #666 !important;
    display: none !important;
    line-height: 1.7 !important;
    font-size: 15px !important;
    background: white !important;
    font-family: inherit !important;
}

.peppol-homepage-isolated .faq-answer.active {
    display: block !important;
    animation: fadeInDown 0.3s ease !important;
}

.peppol-homepage-isolated .faq-toggle.active {
    transform: rotate(45deg) !important;
    background: #D2691E !important;
    color: white !important;
}