<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base accordion styles */
.accordion-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    background-color: #fff;
    overflow: hidden;
}

.accordion-header {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    flex: 1;
    padding-right: 10px;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: #4a6cf7;
    font-size: 14px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease;
    padding: 0 15px !important;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 15px 15px 15px !important;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

/* Mobile accordion styles */
@media (max-width: 768px) {
    /* Make the accordion functionality work properly */
    #comparison-details:target .mobile-accordion-content {
        max-height: 1000px;
        padding: 15px;
        overflow: visible;
        height: auto;
    }
    
    /* Show case studies on mobile */
    .mobile-toggle-content .case-studies {
        display: block !important;
    }
    
    /* Make toggle content always visible */
    .mobile-toggle-content,
    .mobile-accordion-content,
    #comparison-details {
        max-height: 1000px;
        padding: 15px;
        overflow: visible;
        height: auto;
        display: block !important;
    }

    /* Mobile-specific FAQ styles */
    .faq {
        padding: 30px 0 50px !important;
        margin-bottom: 10px !important;
    }
    
    .faq .container {
        padding: 0 15px;
    }
    
    .faq .accordion {
        margin-bottom: 30px;
    }
    
    .faq-cta {
        text-align: center;
        padding: 10px 15px 20px;
    }
    
    .faq-cta .cta-button {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
    }
    
    .accordion-content p {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #4d5968;
    }
}

/* Desktop accordion styles */
@media (min-width: 769px) {
    .case-studies {
        display: flex !important;
    }
}
</pre></body></html>