.section-wrapper.faq-section__section.global-section-style {
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: calc(40% - 50px) calc(60% - 50px);
    gap: 100px;
    align-items: start;
}

@media screen and (max-width: 1600px) {
    .faq-wrapper {
        gap: 50px;
    }
}

.faq-text {
    margin: 20px 0;
}
.faq-text p {
    margin: 0;
}
.faq-text p:not(:last-child) {
    margin-top: 0;
    margin-bottom: 20px;
}

/* CTA jak w sekcji kafelków (tiles-section) */
.faq-button {
    margin-top: 24px;
}

.faq-button a {
    padding: 15px 20px;
    background: var(--color);
    color: #000;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.faq-button a svg path {
    stroke: #0b625e;
}

.faq-header {
    font-size: 25px;
    font-weight: 400;
    color: #0B625E;
}
.faq-header p {
    margin: 0;
}
.faq-header strong {
    padding: 1px 10px;
    border-radius: 10px;
    background-color: #0B625E;
    color: #FFC;
}

.faq-item {
    padding: 20px;
    border-bottom: 2px solid #0b625e;
    cursor: pointer;
}
.faq-item p {
    margin: 0;
}
.faq-question {
    font-size: 18px;
    font-weight: 400;
    color: #0B625E;
}

.faq-item.active .faq-question {
    margin-bottom: 20px;
}

.faq-answer strong, .faq-answer a {
    color: #0B625E;
}


@media screen and (max-width: 1200px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
    }
    .faq-header {
        font-size: 20px;
        font-weight: 400;
    }
    .faq-text {
        font-size: 14px;
    }
    .faq-button a {
        font-size: 14px;
    }
    .faq-item {
    padding: 10px;
    border-bottom: 2px solid #0b625e;
    cursor: pointer;
    font-size: 16px;
}
.faq-question {
    font-size: 16px;
    font-weight: 400;
    color: #0B625E;
}
.faq-answer {
    font-size: 14px;
}
}