﻿.accordion-button {
    display: block;
    background-color: #f0f0f0;
    border: 1px solid #f0f0f0;
    line-height: 40px;
    font-size: 16px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    cursor: pointer;
    padding: 0px 20px;
    border-radius: 3px 3px 0px 0px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

    .accordion-button:focus {
        outline: none;
    }

    .accordion-button:hover {
        background-color: #ddd;
        border-color: #ddd;
    }

    .accordion-button.active {
        border-left: 2px solid #e87511;
        border-bottom: none;
    }


.accordion-section {
    max-height: 0;
    border: none;
    overflow: hidden;
    margin-bottom: 2px;
}

    .accordion-section.open {
        border: 1px solid #ccc;
        border-radius: 0px 0px 3px 3px;
        border-top: none;
        margin-bottom: 2px;
        padding: 5px 20px;
        max-height: 100%;
        width: 100%;
    }

.faq-section-header {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0px 10px 0px;
    text-align: center;
}

.faq-content p {
    margin-bottom: 0;
}
