.faq-section {
    padding: 9.37rem 2rem;
    background-color: var(--lb-sand);
    display: flex;
    margin-bottom: 0!important;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .faq-section {
        padding: 4rem 2rem;
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }
}

.faq-section__container {
    max-width: var(--lb-container);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-section__left {
    position: sticky;
    top: calc(var(--header-height, 100px) + 2rem);
    align-self: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - var(--header-height, 100px) - 4rem);
}

.faq-section__headline {
    font-size: clamp(2rem, 4vw, 3.125rem);
    font-family: var(--lb-font-display);
    color: var(--lb-faq);
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 2rem;
}

.faq-section__contact {
    margin-top: auto;
}

.faq-section__contact-text {
    font-size: 1rem;
    font-family: var(--lb-font-sans);
    color: #555;
    margin-bottom: 1rem;
}

.faq-section__button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--lb-faq);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.faq-section__button:hover {
    background-color: var(--lb-slate);
}

.faq-section__accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-section__item {
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 1rem;
}

.faq-section__question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    line-height: 110%;
    font-size: clamp(1.1rem, 1vw, 1.5rem);
    font-family: var(--lb-font-sans);
    font-weight: 500;
    color: var(--lb-faq);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-section__icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

.faq-section__answer {
    display: none;
    font-size: 1rem;
    font-family: var(--lb-font-sans);
    color: #555;
}

.faq-section__item.active .faq-section__answer {
    display: block;
}

.faq-section__item.active .faq-section__icon {
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .faq-section__container {
        grid-template-columns: 1fr;
    }

    .faq-section__left {
        position: relative;
        top: auto;
        min-height: auto;
        margin-bottom: 3rem;
    }
}
