.faqx-section{
    background: #EEEEEE;
    padding: 200px 0 100px;
}

.faqx-container{
    max-width: 1398px;
    margin: 0 auto;
    padding: 0 20px;
}

.faqx-grid{
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 56px;
    align-items: start;
}

.faqx-title{
    margin: 0 0 30px;
    color: #1C1C1C;
    font-weight: 400;
    font-size: 54px;
    line-height: 62px;
    font-family: 'Geist', sans-serif;
}

.faqx-sub{
    margin: 0 0 30px;
    color: #1C1C1C;
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.faqx-cta{
    margin-top: 40px;
}

.faqx-right{
    position: relative;
}

.faqx-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faqx-item{
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.faqx-q{
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    max-width: 100%;
    margin: 0;
}

.faqx-q__text{
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.faqx-q__icon{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.faqx-a{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), calc(100% - 40px) 100%, 0 100%);
}

.faqx-a__inner{
    padding: 0 20px 28px;
    color: #575757;
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    opacity: 0;
    transform: translateY(-6px);
    transition:
            opacity 0.25s ease,
            transform 0.25s ease;
    transition-delay: 0.5s;
}

.faqx-item.is-open{
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), calc(100% - 40px) 100%, 0 100%);
}

.faqx-item.is-open .faqx-q{
    padding: 16px 18px 20px;
}

.faqx-item.is-open .faqx-q__icon{
    background: #fff;
}

.faqx-item.is-open .faqx-a{
    max-height: 1000px;
}

.faqx-item.is-open .faqx-q__icon{
    transform: rotate(45deg);
}

.faqx-item.is-open .faqx-a__inner{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.faqx-item.is-open .faqx-q__icon svg rect{
    fill: #D41028;
}

.faqx-more{
    margin-top: 20px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #D2D2D2;
    background: transparent;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

@media (max-width: 768px){
    .faqx-section{
        padding: 100px 0 40px;
        background-image: url(/wp-content/uploads/2026/03/Group-1000007196.svg);
        background-repeat: no-repeat;
        background-position: top right;
    }
    .faqx-title {
        margin: 0 0 20px;
        font-size: 36px;
        line-height: 44px;
        text-align: left;
    }
    .faqx-sub {
        margin: 0 0 20px;
        font-size: 16px;
        line-height: 24px;
    }
    .faqx-grid{
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faqx-cta {
        width: 100%;
        margin-top: 0;
    }

    .faqx-item.is-open .faqx-q{
        padding: 20px;
    }

    .faqx-a__inner{
        padding: 0 20px 20px;
    }

    .faqx-q__text {
        font-size: 18px;
        line-height: 26px;
    }

    .faqx-item.is-open{
        clip-path: none;
    }
}