/* FAQ Page Styles */

/* Hero Section */
.faq-hero {
    padding-top: 160px; /* More space for fixed header */
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .faq-hero {
        padding-top: 120px;
        padding-bottom: 70px;
    }
    .faq-hero h1 {
        font-size: 2.5rem !important;
    }
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px !important; /* Slightly softer rounded corners */
}

/* Accordion Styles */
.custom-accordion .accordion-item {
    background-color: #fff;
    border: 1px solid #e2e8f0 !important;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.custom-accordion .accordion-button {
    background-color: transparent;
    color: #0f172a;
    box-shadow: none;
    padding: 1.25rem 1.5rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #0f172a; /* Keep text dark when expanded */
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); /* Subtle separator */
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.125);
}

.custom-accordion .accordion-body {
    padding: 1.5rem;
    line-height: 1.6;
}

/* CTA Section */
.faq-cta-card {
    background-color: #0f172a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-warning {
    background-color: #f59e0b;
    border: none;
    color: #0f172a;
}

.btn-warning:hover {
    background-color: #fbbf24;
    color: #0f172a;
}
