.faq-section {
    padding: 80px 0;
}

/* wrapper */
.faq-item {
    margin-bottom: 16px;
}

/* BELKA */
.faq-question {
    width: 100%;
    background: #eaffb0;
    border: 2px solid #cfe68a;
    border-radius: 18px;

    padding: 20px 64px 20px 24px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
    cursor: pointer;
}

.faq-question:not(.collapsed) .faq-icon {
    background: #eaffb0;
    color: #000000;
}

/* BELKA AKTYWNA */
.faq-question:not(.collapsed) {
    background: #0b4f2f;
    color: #ffffff;
    border-color: #0b4f2f;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* IKONKA */
.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;

    background: #0b4f2f;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 700;

    position: absolute;
    right: 16px;
}

/* PLUS */
.faq-question.collapsed .faq-icon::before {
    content: "+";
}

/* X */
.faq-question:not(.collapsed) .faq-icon::before {
    content: "×";
}

/* ODPOWIEDŹ */
.faq-answer {
    background: #0b4f2f;
    color: #e6f2e9;
    padding: 5px 24px;
    border-top: 0;
    border-radius: 0 0 18px 18px;
}

.faq-answer p {
    color: #e6f2e9;
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 56px 16px 20px;
    }
}


.tips-section {
    padding: 80px 0;
}

/* GŁÓWNA RAMKA */
.tips-box {
    background: #0b4f2f;
    border-radius: 24px;
    overflow: hidden;
    /* kluczowe – obcina rogi */
}

/* POJEDYNCZY WIERSZ */
.tips-row {
    padding: 32px 40px;
    color: #ffffff;
}

/* LINIA MIĘDZY REKORDAMI */
.tips-row+.tips-row {
    border-top: 2px solid #cfe68a;
}

/* TYTUŁY */
.tips-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    color: #ffffff;
}

/* TEKST */
.tips-row p,
.tips-row li {
    color: #e6f2e9;
    line-height: 1.7;
}

/* LISTA */
.tips-list {
    padding-left: 18px;
    margin-bottom: 16px;
}

/* NOTKA */
.tips-note {
    margin-top: 12px;
    font-weight: 600;
}