.accordion-item {
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    background-color: var(--color-white);
    padding: 20px 0;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-body {
    padding-bottom: 15px;
}

.accordion-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}