.faq-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /*width: 100%;*/
    align-items: start;
}

.faq-left {
    margin-top: 20px;
    padding-left: calc(var(--GridPadding1) + 64px);
}

.faq-left p {
    margin-top: 22px;
    justify-content: start;
    max-width: 400px;
    line-height: 1.5;
}

.faq-left a {
    gap: 0;
    text-decoration:underline;
    color: var(--Red);
}


.link-red {
    color: var(--Red);
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border-bottom: 1px solid var(--Beige, gray);
    margin-top: 38px;
    cursor: pointer;
}

h4 {
    margin: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease, opacity 0.2s ease;
    opacity: 0;
    padding: 7px 12px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    height: calc(100% + 30px);
    justify-content: center;
    opacity: 1;
    padding: 15px 12px;
    transition: max-height 0.8s ease, opacity 0.5s ease;

}

.arrow {
    transition: transform 0.6s ease;
    height: 1.5rem;
    width: 1.3rem;
    align-self: start;
}

.faq-item.active .arrow {
    transform: rotate(-180deg);
}


@media (max-width: 600px) {
    .faq-section {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-left {
        order: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
        padding-left: 0;
    }

    .faq-left p {
        display: none;
    }

    .faq-right {
        order: 2;
        gap: 8px;
    }

    .faq-item {
        padding: 8px 0px;
        margin: 0px;
    }

    .faq-answer {
        padding: 0px;
    }
}