/* FAQ PAGE */

.faq-search-box {
    max-width: 600px;
    margin: 20px auto 40px;
}

.faq-search-box input {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.faq-container {
    max-width: 850px;
    margin: auto;
}

.faq-item {
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.faq-question img {
    width: 28px;
    margin-right: 12px;
}

.arrow {
    margin-left: auto;
    font-size: 26px;
    font-weight: bold;
    transition: 0.3s;
}

.faq-answer {
    font-size: 15px;
    color: #444;
    margin-top: 12px;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(45deg);
    color: #ff416c;
}
