/* ROI Section Collapsible - KUN det som trengs for funksjonaliteten */

/* ROI Header styling */
.roi-header {
    text-align: center;
    margin-bottom: 0;
}

.roi-subtitle {
    max-width: 700px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Toggle icon styling for roi knappen */
.roi-toggle-btn .toggle-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.roi-toggle-btn.expanded .toggle-icon {
    transform: rotate(180deg);
}

/* Collapsible Content for roi section */
.roi-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.roi-content.expanded {
    max-height: 8000px; /* Høy nok verdi for alt innhold */
    opacity: 1;
    margin-top: 3rem;
}

/* Det er alt! Alle andre styling bruker eksisterende klasser fra andre CSS-filer */