
/* Accordion Container Styling */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-left {
    flex: 2;
}

.faq-right {
    flex: 1;
}

.faq-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
       flex-wrap: wrap;
}

.faq-big-img {
    width: 100%;
    align-self: center;
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 30px;
    transform: rotate(10deg);
}

/* 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);
}

/* Responsive Tweaks */
@media screen and (max-width: 768px) {
    #faq {
        background-position: top 50px left 10px, bottom 10px right 10px;
        background-size: 150px, 150px;
    }

    .faq-right{
        display: none;
    }


}