/* === Sekcja: FAQ === */
.faq-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Nagłówek */
.faq-section h2 {
    font-size: 1.9rem;
    color: var(--brand-dark);
    font-weight: 700;
}

/* Boxy pytań */
.faq-box {
    border: 1px solid rgba(18, 39, 56, 0.08);
    transition: all 0.3s ease;
}

.faq-box:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 102, 45, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Tytuły pytań */
.faq-box h6 {
    color: var(--brand-dark);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Treść odpowiedzi */
.faq-box p {
    color: rgba(18, 39, 56, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsywność */
@media (max-width: 767.98px) {
    .faq-section h2 {
        font-size: 1.6rem;
    }

    .faq-box h6 {
        font-size: 1rem;
    }

    .faq-box p {
        font-size: 0.9rem;
    }
}
