.accordion-wrapper {
    border: 1px solid #023755;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.accordion-item {
    /*border-top: 1px solid #ddd;*/
    border-top: 3px solid #004F71;

}

.accordion-item button {
    color:#004F71 !important;
}

.accordion-toggle {
    width: 100%;
    background: #f1f1f1;
    padding: 1rem;
    font-size: 1.1em;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s;
}
.accordion-toggle:hover {
    /* background: #c5d7fc;*/
    background: #d0eefa;
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 0 1rem;
}
.accordion-content.open {
    max-height: 1000px;
    opacity: 1;
    padding: 1rem;
}

.accordion-toggle.active {
    background-color: #004F71;
    font-weight: bold;
    color: #eeeeee !important;
}

.accordion-toggle::before {
    content: '▶'; /* right arrow for closed */
    display: inline-block;
    margin-right: 8px;
    transition: transform 0.2s ease;
}

.accordion-toggle.active::before {
    content: '▼'; /* down arrow for open */
}
