/* === FAQ Wrapper === */
.faq-schema {
    margin: 40px auto;
    max-width: 800px;
    padding: 20px;
    background: #fefefe;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-family: "Segoe UI", Roboto, sans-serif;
}

/* === Nagłówek FAQ === */
.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.faq-subtext {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* === Pojedyncze pytanie i odpowiedź === */
.faq-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* === Responsywność === */
@media screen and (max-width: 600px) {
    .faq-schema {
        padding: 15px;
    }

    .faq-header h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}
.smart-faq-wrapper {
    display: block;
}

.smart-faq-wrapper.faq-disabled {
    display: none;
}
.faq-question {
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #0073aa;
}