/* ================= FAQ HERO ================= */
.faq-hero {
    text-align: center;
    padding: 90px 20px 60px;
    background: #f8f6f2;
}

.faq-label {
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    color: #7a6b4f;
    margin-bottom: 12px;
}

.faq-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.faq-hero p {
    max-width: 720px;
    margin: 0 auto 30px;
    color: #555;
}

/* ================= SEARCH ================= */
.faq-search {
    max-width: 520px;
    margin: 0 auto;
}

.faq-search input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 60px 20px 100px;
}

.faq-container {
    max-width: 900px; /* SZERSZE niż screen */
    margin: 0 auto;
}

/* ================= FAQ ITEM ================= */
.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 10px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    color: #7a6b4f;
}

.faq-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* ================= ANSWER ================= */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 10px;
    color: #555;
    line-height: 1.6;
}

/* ================= ACTIVE STATE ================= */
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
