.wp-faq-list {
    margin-top: 20px;
    font-family: 'Roboto', Arial, sans-serif;
}

.wp-faq-list .faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.wp-faq-list .faq-question {
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding-right: 25px;
    color: #1a1a1a;
    transition: color 0.3s;
}

.wp-faq-list .faq-question:hover {
    color: #0073e6;
}

.wp-faq-list .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s;
}

.wp-faq-list .faq-question.active + .faq-answer {
    padding: 10px 0;
}

.wp-faq-list .faq-answer {
    display: block;          /* block olmalı */
    max-height: 0;           /* başlangıçta kapalı */
    overflow: hidden;        /* taşan içerik gizlensin */
    padding: 0 0;            /* başlangıç padding 0 */
    color: #333;
    line-height: 1.9
    transition: max-height 0.4s ease, padding 0.4s ease;
}

@media (max-width: 768px) {
    .wp-faq-list .faq-item {
        padding: 12px 0;
    }
    .wp-faq-list .faq-question::after {
        font-size: 16px;
    }
}
