.accordion .accordion__item {
    overflow: hidden;
}
.accordion .accordion__item .accordion__item--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.accordion .accordion__item .accordion__item--header svg {
    transition: transform 0.3s ease;
}
.accordion .accordion__item .accordion__item--content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion .accordion__item.active .accordion__item--header svg {
    transform: rotate(-180deg);
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.popup-overlay.active {
    display: flex;
    opacity: 1;
}
.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    max-width: 500px;
    width: 100%;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: 0 0;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
