.faq-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

.cta-container {
    width: 100%;
    display: flex;
    gap: 16px;
}

.cta-btn {
    justify-self: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    max-width: 363.333px;
    width: 100%;
    flex-shrink: 0;
    border-radius: 10px;
    padding: 13px 61.47px 13px 60px;
    background: #006572;
    text-align: center;
    color: #FFF;
    font-family: "RNSSanz-Normal";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 160% */
}

.cta-btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #00AEC4;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    color: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.50);
    transition: all 0.3s ease;
}

.cta-btn:hover:after {
    right: 0;
    width: 100%;
}

cta-btn:active {
    top: 2px;
}

.faq-cards {
    display: flex;
    padding: 30px;
    flex-direction: column;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    gap: 10px;
}

.faq-cards .faq-title {
    display: flex;
    gap: 10px;
}

.faq-cards .faq-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

svg {
    width: 30px;
    aspect-ratio: 1/1;
}