/* FAQ Section Wrapper */
#faq {
    position: relative;
    background-color: #f9f9f9;
    background-image: url('../../images/question-mark.svg'), url('../../images/question-mark.svg');
    background-repeat: no-repeat, no-repeat;
    background-size: 16%, 12%;
    background-position: top 20px left 20px, bottom 30px right 30px;
    padding: 5rem 0;
    z-index: 1;
}

/* Accordion Container Styling */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    justify-self: center;
    max-width: 700px;
}

/* Accordion Item */
.accordion-item {
    border: 1px solid #ddd;
    border-radius: 10px !important;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

/* Header Button - Default */
.accordion-button {
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 10px !important;
    box-shadow: none !important;
    color: var(--primary-color) !important;
    font-weight: 400;
}

/* Header Button - Hover */
.accordion-button:hover {
    background-color: #f1f1f1;
    color: var(--primary-color);
}

/* Header Button - Active (Expanded) */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-bottom: none;
}

/* Accordion Body */
.accordion-body {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    background-color: #fcfcfc;
}

/* FAQ Heading */
#faq h1 {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.faq-big-img{
    display: none;
}
.accordion-button:not(.collapsed)::after{
    filter: invert(1);
}
/* Responsive Tweaks */
@media screen and (max-width: 768px) {
    #faq {
        background-position: top 50px left 10px, bottom 10px right 10px;
        background-size: 0px, 0px;
    }
}