/**
 * FAQ Section Styles
 * 
 * These styles are extracted from the inline CSS in the FAQ HTML block
 * but modified to use theme variables where appropriate.
 */

.section-padding {
    padding: 5rem 0;
}

.faq-section {
    background-color: var(--theme-background-light, #f9fafb);
}

.container-responsive {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--theme-accent-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.heading-xl {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--theme-heading-color, #111827);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--theme-text-color, #6b7280);
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-item {
    border: 1px solid var(--theme-border-color, #e5e7eb);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--theme-heading-color, #111827);
    background-color: var(--theme-card-background, #ffffff);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--theme-accent-color);
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--theme-text-color, #4b5563);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cta {
    background: var(--theme-accent-color);
    color: var(--contrast-color, white);
    border: none;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

/* Integration with Lucide icons */
.faq-question svg[data-lucide],
.faq-cta svg[data-lucide] {
    color: currentColor;
    width: 1.25rem;
    height: 1.25rem;
}