/* FAQ Section */
#accordionExample {
    margin: 60px auto;
}

#accordionExample h2.noto {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #b70885;
    margin-bottom: 30px;
}

/* Accordion Item */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Question */
.accordion-button {
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 17px;
    padding: 18px 22px;
    border: none;
    box-shadow: none !important;
}

/* Active Question */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ecb537, #b70885);
    color: #fff;
}

/* Focus Remove */
.accordion-button:focus {
    box-shadow: none;
    border: none;
}

/* Answer */
.accordion-body {
    background: #fffaf1;
    color: #555;
    line-height: 1.8;
    font-size: 18px;
    padding: 20px 25px;
}

/* Icon Color */
.accordion-button::after {
    filter: hue-rotate(280deg);
}

/* Hover Effect */
/* .accordion-button:hover {
    background: rgba(236, 181, 55, 0.08);
} */

/* Mobile */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 15px;
        padding: 15px;
    }

    .accordion-body {
        font-size: 14px;
        padding: 15px;
    }

    #accordionExample h2.noto {
        font-size: 1.6rem;
    }
}