.faq-heading {
    text-align: center;
    margin: 0 0 56px;
}
.faq-heading h2 {
    margin-bottom: 14px;
    text-align: center;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    border-radius: 14px;
    border: 1px solid rgb(229 231 235);
}
.faq-question {
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 21px;
}
.faq-icon {
    width: 28px;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(243 244 246);
    border-radius: 50%;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    margin-left: 14px;
}
.faq-icon svg {
    width: 17.5px;
    height: 17.5px;
}
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.faq-item.active .faq-answer {
    opacity: 1;
    max-height: 24rem;
    border-top: 1px solid rgb(219 234 254 / 50%);
}
.faq-answer p {
    line-height: 1.625;
    width: 100%;
    padding: 0 21px 21px;
}
.faq-item.active {
    border-color: rgb(0 163 224);
    background: rgb(239 246 255 / 30%);
}
.faq-question span {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #0f172a;
}
.faq-item.active .faq-question span {
    color: rgb(0 76 140);
}
.faq-item.active span.faq-icon {
    background: rgb(0 163 224);
    transform: rotate(180deg);
}
.faq-item.active span.faq-icon img {
    filter: brightness(1) saturate(0);
}
.faq-item.active span.faq-icon svg {
    stroke: #fff;
}
.faq-footer {
    margin: 42px 0 0;
    text-align: center;
    font-size: 15px;
}
.faq-footer a {
    color: rgb(0 163 224);
    font-weight: 600;
}
.faq-footer a:hover {
    text-decoration: underline;
}
.cta-card {
    position: relative;
    max-width: 720px;
    margin: 80px auto 0;
}
.cta-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #f1f5f9;
    z-index: -1;
    transition: background .5s;
}
.cta-card:hover .cta-line {
    background: #dbeafe;
}
.cta-box {
    background: rgb(239 246 255);
    padding: 32px;
    border-radius: 18px;
    border: 1px solid rgb(219 234 254);
    box-shadow: 0 20px 50px -10px rgba(0,0,0,.05);
    transition: all .5s;
}
.cta-card:hover .cta-box {
    transform: translateY(-4px);
    box-shadow: 0 40px 80px -20px rgba(30,58,138,.1);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-card .cta-icon {
    width: 48px;
    height: 48px;
    background: rgb(0 163 224 / 9%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: rgb(0 163 224);
    transition: all .5s;
}
.cta-card:hover .cta-icon {
    background: rgb(0 163 224);
    color: #fff;
}
.cta-icon svg {
    width: 21px;
    height: 21px;
}
.cta-card .icon-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    background: rgb(0 163 224);
    border-radius: 50%;
    border: 2px solid #fff;
    transform: scale(0);
    transition: transform .5s;
}
.cta-card:hover .icon-dot {
    transform: scale(1);
}
.cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
}
.cta-text h4 {
    margin: 0;
    font-weight: 600;
}
.cta-arrow {
    max-height: 14px;
}
.cta-card .cta-link {
    background: rgb(0 163 224);
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    padding: 10.5px 21px;
    display: inline-flex;
    align-items: center;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.cta-arrow svg {
    width: 14px;
    height: 14px;
    margin-left: 7px;
}
.cta-card .cta-link:hover {
    background-color: #4a98d8;
    color: #fff;
}
.cta-card .cta-link:hover svg {
    transform: translateX(4px);
}
@media screen and (max-width:767px){
    .faq-question span {
        text-align: left;
    }
    .cta-inner {
        justify-content: center;
        gap: 21px;
    }
    .faq-heading h2 {
        font-size: 30px;
    }
    .faq-section {
        padding: 60px 0;
    }
}
@media screen and (min-width:768px) and (max-width:1024px){
    .faq-heading {
        text-align: center;
        margin: 0 0 36px;
    }
    .cta-card {
        margin: 60px auto 0;
    }
}