.contact-banner-content{
    align-items: center;
    text-align: center;
}

.contact-banner-tag{
    align-self: center;
}

.contact-banner-content p{
    max-width: 720px;
}

.contact-banner-content h1 span{
    color: #8BC22C;
}

.faq-banner-search{
    width: min(100%, 560px);
    height: 51px;
    margin-top: 24px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.92);
}

.faq-banner-search i{
    color: #8A959C;
    font-size: 16px;
    flex: 0 0 auto;
}

.faq-banner-search input{
    width: 100%;
    border: 0;
    background: transparent;
    color: #111111;
    font-size: 14px;
    line-height: 1.4;
    outline: none;
}

.faq-banner-search input::placeholder{
    color: #8A959C;
}

.faq-category-section{
    position: sticky;
    top: var(--nav-height);
    z-index: 80;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
}

.faq-category-wrap{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-category-list{
    padding: 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.faq-category-item{
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background-color: transparent;
    color: #666666;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color .3s ease, color .3s ease;
}

.faq-category-item.active{
    background-color: #002135;
    color: #FFFFFF;
}

@media (hover: hover) and (pointer: fine) {
    .faq-category-item:not(.active):hover{
        background-color: #F3F4F3;
        color: #111111;
    }
}

.faq-list-section{
    padding: 40px 0 96px;
}

.faq-list-wrap{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-cta-section{
    padding: 0 0 96px;
}

.faq-cta-wrap{
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
    border-radius: 16px;
    background-color: #F3F4F3;
    text-align: center;
}

.faq-cta-wrap h2{
    color: #111111;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3;
}

.faq-cta-wrap p{
    max-width: 620px;
    margin: 14px auto 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

.faq-cta-actions{
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.faq-cta-btn{
    min-width: 188px;
    min-height: 44px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .3s ease, color .3s ease, transform .3s ease, opacity .3s ease;
}

.faq-cta-btn i{
    font-size: 15px;
}

.faq-cta-btn-dark{
    background-color: #002135;
    color: #FFFFFF;
}

.faq-cta-btn-green{
    background-color: #8BC22C;
    color: #002135;
}

.faq-list{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item{
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.faq-item-toggle{
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.faq-item-copy{
    min-width: 0;
}

.faq-item-kicker{
    color: #8BC22C;
    font-size: 12px;
    line-height: 1.4;
}

.faq-item-copy h3{
    margin-top: 8px;
    color: #111111;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.7;
}

.faq-item-icon{
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 50%;
    background-color: #F3F4F3;
    color: #666666;
    transition: background-color .3s ease, color .3s ease;
}

.faq-item-icon::before,
.faq-item-icon::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: currentColor;
    transform: translate(-50%, -50%);
    transition: transform .3s ease, opacity .3s ease;
}

.faq-item-icon::after{
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item-panel{
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item-panel p{
    padding: 0 24px 24px;
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
}

.faq-item.show .faq-item-icon{
    background-color: #8BC22C;
    color: #FFFFFF;
}

.faq-item.show .faq-item-icon::after{
    opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
    .faq-item:hover{
        border-color: rgba(139, 194, 44, 0.5);
    }
}

@media screen and (max-width: 768px) {
    .faq-list-section{
        padding: 32px 0 56px;
    }

    .faq-cta-section{
        padding: 0 15px 56px;
    }

    .faq-cta-wrap{
        padding: 40px 20px;
    }

    .faq-item-toggle{
        padding: 20px;
    }

    .faq-item-panel p{
        padding: 0 20px 20px;
    }
}

@media screen and (max-width: 480px) {
    .faq-list-section{
        padding: 28px 0 44px;
    }

    .faq-cta-section{
        padding-bottom: 44px;
    }

    .faq-cta-wrap{
        padding: 32px 16px;
    }

    .faq-cta-wrap h2{
        font-size: 22px;
    }

    .faq-cta-wrap p{
        font-size: 15px;
    }

    .faq-cta-actions{
        margin-top: 24px;
        flex-direction: column;
    }

    .faq-cta-btn{
        width: 100%;
    }

    .faq-item-toggle{
        padding: 18px 16px;
        gap: 14px;
    }

    .faq-item-panel p{
        padding: 0 16px 18px;
    }
}
