/* FAQ Wrapper */
.faq-wrapper {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 30px;
    color: black;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-desc {
    text-align: center;
    color: #555;
    margin-bottom: 35px;
}

.faq-category {
    margin-top: 35px;
    font-size: 20px;
    font-weight: 600;
    color: #444;
}

/* FAQ Items */
.faq-item {
    margin: 12px 0;
}

.faq-btn {
    width: 100%;
    padding: 14px 18px;
    text-align: left;
    border: none;
    border-radius: 7px;
    background: #efefef;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.faq-btn:hover {
    background: #dedede;
}

.faq-btn.active {
    background: #d2d2d2;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    padding: 0 18px;
    border-radius: 7px;
    transition: max-height 0.3s ease;
}

.faq-content p {
    padding: 14px 0;
    color: #555;
    line-height: 1.6;
}
