/* --- FAQ Accordion Styles --- */
.cppp-accordion {
    margin-top: 20px;
}
.cppp-accordion-title {
    background-color: #f7f7f7;
    color: #333;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1em;
    transition: background-color 0.2s;
    margin: 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cppp-accordion-title:hover, .cppp-accordion-title.active {
    background-color: #eee;
}
.cppp-accordion-title::after {
    content: '+';
    font-size: 1.5em;
    font-weight: 300;
    margin-left: 10px;
}
.cppp-accordion-title.active::after {
    content: '-';
}

.cppp-accordion-content {
    padding: 0 15px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    border: 1px solid #eee;
    border-top: none;
}
.cppp-accordion-content p:first-child {
    margin-top: 15px;
}
.cppp-accordion-content p:last-child {
    margin-bottom: 15px;
}