.accordion {
    background-color: white;
    border: 1px solid white;
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
    color: var(--primary-color);
}

.accordion__trigger {
    font-weight: bold;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion__content.open {
    max-height: var(--content-height);
}

.accordion__content-inner {
    padding: 1rem;
}

.accordion__trigger-button {
    background: none;
    border: none;
    padding: 0;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    height: 20px;
    width: 20px;
}

.accordion__trigger-button svg {
    height: 100%;
    width: 100%;
    fill: var(--primary-color);
}

.accordion__trigger.open .accordion__trigger-button {
    transform: rotate(-90deg);
}
