.custom-accordion {
    margin-top: 2em !important;
    font-family: 'Montserrat', sans-serif;
}

.accordion-item {
    border-bottom: 1px solid rgb(229 229 229);
}

.accordion-item:first-child {
    border-top: 1px solid rgb(229 229 229);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    font-weight: 600;
    text-transform: uppercase;
}

/* ICON */
.accordion-header .icon {
    width: 14px;
    height: 14px;
    position: relative;
    display: inline-block;
}

.accordion-header .icon::before,
.accordion-header .icon::after {
    content: '';
    position: absolute;
    background: #000;
    transition: transform 0.3s ease;
}

/* horisontell linje */
.accordion-header .icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* vertikal linje */
.accordion-header .icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* när aktiv → minus */
.accordion-item.active .icon::after {
    transform: translateX(-50%) scaleY(0);
}

/* CONTENT */
.accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        padding 0.3s ease;
    padding-bottom: 0;
}

/* när aktiv */
.accordion-item.active .accordion-content {
    opacity: 1;
    padding-bottom: 15px;
}