/* FAQ-spesifikk styling som matcher juridisk design */
        .faq-item {
            background: linear-gradient(135deg, rgba(4, 28, 44, 0.6), rgba(0, 167, 225, 0.03));
            border: 1px solid rgba(0, 167, 225, 0.2);
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            background: rgba(0, 167, 225, 0.05);
        }
        
        .faq-question:hover {
            background: rgba(0, 167, 225, 0.1);
        }
        
        .faq-question h3 {
            margin: 0;
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            font-weight: 600;
            flex: 1;
        }
        
        .faq-icon {
            font-size: 1.2rem;
            color: #00A7E1;
            font-weight: bold;
            transition: transform 0.3s ease;
            margin-left: 1rem;
            min-width: 20px;
            text-align: center;
        }
        
        .faq-item.active .faq-question {
            background: rgba(0, 167, 225, 0.15);
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: rgba(4, 28, 44, 0.3);
        }
        
        .faq-item.active .faq-answer {
            padding: 1.5rem;
        }
        
        .faq-answer p, .faq-answer ul, .faq-answer li {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin: 1rem 0;
        }
        
        .faq-answer ul {
            margin-left: 1.5rem;
        }
        
        .faq-answer li {
            margin-bottom: 0.5rem;
        }
        
        .faq-answer strong {
            color: #00A7E1;
            font-weight: 600;
        }
        
        .faq-answer p:first-child {
            margin-top: 0;
        }
        
        .faq-answer p:last-child, .faq-answer ul:last-child {
            margin-bottom: 0;
        }

        /* CTA spacing modifier */
.cta-spaced {
    margin-top: 1.5rem;
}

/* Contact note styling */
.contact-note {
    margin-top: 1rem;
    font-size: 0.9em;
    color: #666;
}