.text-orange { color: var(--color-3) !important; }

/* --- Hero Banner --- */
.faq-hero-section {
    padding: 80px 0 0px 0; /* Extra bottom padding so main content can overlap */
    position: relative;
    border-bottom: 6px solid var(--color-3);
}

/* --- Main Layout Overlap --- */
.faq-section {
    padding-top: 30px;
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

/* --- Category Headers --- */
.faq-category-header {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--color-3);
}

/* Removes top margin from the very first category so it sits flush */
.faq-category-header:first-of-type {
    margin-top: 0;
}

.category-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-1);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Custom Accordion Cards --- */
.custom-accordion .accordion-item.faq-card {
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item.faq-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* --- Accordion Button Styling --- */
.custom-accordion .accordion-button {
    background-color: transparent;
    color: var(--color-1);
    font-weight: 600;
    font-size: 17px;
    padding: 20px 25px;
    box-shadow: none !important; /* Removes Bootstrap's blue focus ring */
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(240, 78, 35, 0.05); /* Very light orange bg when open */
    color: var(--color-3);
}

.faq-question-text {
    padding-right: 20px; /* Prevents text from hitting the icon */
    line-height: 1.4;
}

/* --- Custom Animated Plus/Minus Icons --- */
.custom-accordion .accordion-button::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "\2b"; /* FontAwesome Plus Icon */
    background-image: none; /* Kills default Bootstrap arrow */
    font-size: 18px;
    color: var(--color-3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(240, 78, 35, 0.1);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068"; /* FontAwesome Minus Icon */
    background-color: var(--color-3);
    color: #ffffff;
    transform: rotate(180deg);
}

/* --- Accordion Body --- */
.custom-accordion .accordion-body {
    padding: 0 25px 25px 25px;
    font-size: 16px;
    line-height: 1.7;
    border-top: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .category-title { font-size: 20px; }
}

@media (max-width: 767px) {
    .custom-accordion .accordion-button {
        font-size: 15px;
        padding: 15px 20px;
    }
    .custom-accordion .accordion-body {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }
}