@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* min-height: 100vh; */
}

body {
    overflow-y: hidden;
}

button, input {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
}


.owl-carousel .owl-stage{

    margin-left: -1px;

}

.transparentbgnow{

    background-color: transparent;
}



header {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background-color 0.3s ease;
}

header:has(#mobile-menu.active) {
    background-color: white;
}

#logo {
    height: 32px;
    object-fit: contain;
}

#navbar {
    display: none;
    gap: 12px;
    align-items: center;
    box-sizing: border-box;
}

#navbar a {
    border-radius: 99px;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 12px;
    color: black;
    transition: all 0.1s ease;
}

#navbar a.active {
    color: #0B569A;
    font-weight: 600;
}

#contact-btn {
    border-radius: 99px;
    padding: 12px 24px;
    text-decoration: none;
    border: 1px solid #0B569A!important;
    font-size: 14px;
    font-weight: 500;
    color: #0B569A!important;
    display: none;
}

#mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #0B569A;
    border-radius: 99px;
}

#mobile-menu-btn svg {
    width: 20px;
    height: 20px;
}

#mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 24px 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 100;
    border-top: 1px solid rgba(0,0,0,0.1);
    flex-direction: column;
    gap: 20px;
    display: none;
}

#mobile-menu.active {
    display: flex;
}

#mobile-menu a {
    width: 100%;
    text-align: left;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #06335D;
}

footer {
    margin: 24px 16px;
    background-color: #E1EEF8;
    border-radius: 24px;
    padding: 48px 32px;
    position: relative;
    z-index: 1;
}

#top-footer {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 48px;
}

#left-footer {
    color: #06335D;
    font-size: 12px;
    line-height: 140%;
    max-width: 300px;
}

#left-footer #footer-logo {
    margin-bottom: 16px;
}

#left-footer #footer-logo img {
    height: 40px;
    object-fit: contain;
}

#left-footer #footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 52px;
}

#left-footer #footer-socials img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

#right-footer {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    flex-shrink: 0;
    column-gap: 80px;
    row-gap: 40px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #06335D;
}

.footer-links > * {
    color: #06335D;
    line-height: 140%;
}

.footer-title {
    font-weight: 600;
    font-size: 16px;
}

.contact-link {
    display: flex;
    align-items: start;
    gap: 8px;
}

#bottom-footer {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid #06335D;
    font-size: 12px;
    color: #06335D;
}

@media (min-width: 640px) {
    .footer-links {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
        color: #06335D;
        max-width: 258px;
    }
}

@media (min-width: 768px) {
    #navbar {
        display: flex;
    }

    #contact-btn {
        display: block;
    }

    #mobile-menu-btn, #mobile-menu {
        display: none;
    }

    footer {
        margin: 32px 48px;
        background-color: #E1EEF8;
        border-radius: 24px;
        padding: 40px 60px;
    }
}

@media (min-width: 1024px) {
    header {
        padding: 24px 48px;
        gap: 12px;
    }

    #logo {
        height: 42px;
    }

    #navbar a {
        padding: 10px 16px;
        font-size: 14px;
    }

    #contact-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    #top-footer {
        display: flex;
        flex-direction: row;
        align-items: start;
        justify-content: space-between;
        gap: 60px;
    }

    #right-footer {
        display: flex;
        align-items: start;
        justify-content: end;
        flex-wrap: nowrap;
        flex-shrink: 0;
        gap: 40px;
    }
}

@media (min-width: 1280px) {
    #top-footer {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    #left-footer {
        max-width: none;
    }

    #right-footer {
        grid-column: span 4 / span 4;
        display: flex;
        align-items: start;
        justify-content: end;
        gap: 84px;
    }
}

#hero {
    margin-top: 64px;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

#hero-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 8px;
}

#hero-top-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

#hero-top-wrap .hero-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2D2D2D;
    font-size: 8px;
}

#hero-top-wrap .hero-top .hero-bold {
    font-size: 12px;
    font-weight: 600;
    color: #06335D;
}

#clients-icon {
    height: 18px;
    object-fit: contain;
}

#following-icon {
    height: 22px;
    object-fit: contain;
}

#hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#hero-header {
    text-align: center;
    font-weight: 500;
    font-size: 28px;
    color: #06335D;
    line-height: 120%;
}

#hero-subheader-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

#circular-illust {
    height: 28px;
    object-fit: contain;
}

#hero-subheader {
    font-size: 12px;
    color: #06335D;
    line-height: 130%;
}

@media (min-width: 640px) {
    #hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #hero-top-wrap .hero-top {
        gap: 12px;
        font-size: 12px;
    }
}

/* For screen widths between 359px and 389px */
@media screen and (min-width: 359px) and (max-width: 389px) {
    #hero-header {
        font-size: 29px!important;
    }
    .amt{top: 0.3425rem!important;}

    .timeinpain{
        height: 50px;
        
        }

        .timeinpaininput{

            font-size: 18px;

        }
        .questionstext{
            font-size: 14px;
            line-height: 1.3;

            
        }
        .eligibleexplainertext {

            font-size: 13px;
        }
        .schedulecalldescriptiontext{
            font-size: 13px;
        }
        .mfp-iframe-scaler {padding-top: 96.25%;}
        .mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {right: 10px;}
    }

/* For screen widths between 390px and 420px */
@media screen and (min-width: 390px) and (max-width: 767px) {
    #hero-header {
        font-size: 32px!important;
    }
    .amt{top: 0.3425rem!important;}
    .timeinpain{
        height: 50px;
        
        }

        .timeinpaininput{

            font-size: 18px;

        }
        .questionstext{
            font-size: 14px;
            line-height: 1.3;

        }
        .eligibleexplainertext, .schedulecalldescriptiontext{

            font-size: 13px;
        }
        .mfp-iframe-scaler {padding-top: 96.25%;}

        .mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {right: 10px;}
}

@media (min-width: 768px) {


    #hero-wrap {
        gap: 16px;
        padding-left: 32px;
        padding-right: 32px;
        padding-bottom: 12px;
    }

    #hero-top-wrap {
        gap: 24px;
        flex-wrap: nowrap;
    }

    #hero-top-wrap .hero-top {
        gap: 12px;
        font-size: 18px;
    }

    #hero-top-wrap .hero-top .hero-bold {
        font-size: 20px;
    }

    #clients-icon {
        height: 22px;
    }

    #following-icon {
        height: 28px;
    }

    #hero-header {
        font-size: 56px;
    }
    

    #circular-illust {
        height: 34px;
    }

    #hero-subheader {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    #hero-wrap {
        gap: 16px;
        width: 760px;
        padding-left: 48px;
        padding-right: 48px;
        padding-bottom: 16px;
        margin: 0 auto;
    }

    #circular-illust {
        height: 38px;
    }
}

#hero-quiz {
    padding-bottom: 80px;
    color: #06335D;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
}

#hero-quiz-wrap-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
    height: auto;
}

#hero-quiz-wrap-2, #hero-quiz-wrap-3, #hero-quiz-wrap-4, #hero-quiz-wrap-5, #hero-quiz-wrap-6, #hero-quiz-wrap-7, #hero-quiz-wrap-8, #hero-quiz-wrap-9, #hero-quiz-wrap-10 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
    height: auto;
}

#hero-quiz-choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    font-size: 16px;
    text-align: center;
    line-height: 120%;
    font-weight: 600;
}

.hero-quiz-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-quiz-choice {
    position: relative;
    border-radius: 16px;
    background-color: white;
    border: 2px solid #CDDFF0;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.hero-quiz-choice:hover {
    border: 2px solid #1F7DD4;
}

.hero-quiz-choice img {
    height: 48px;
    object-fit: contain;
}

.hero-quiz-choice .check-badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0B569A;
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
}

.hero-quiz-choice .check-badge img {
    width: 10px;
    height: 10px;
}

.hero-quiz-choice input[type="radio"]:checked ~ .check-badge {
    display: flex !important;
}

.hero-quiz-choice:has(input[type="radio"]:checked) {
    background-color: #E9F2FB !important;
    border: 2px solid #1F7DD4 !important;
}

#next-btn-wrap {
    display: flex;
    justify-content: end;
    margin: 0 auto;
}

.next-btn {
    order: 3;
    background-color: #0B569A;
    border-radius: 99px;
    padding: 4px 16px 4px 24px;
    outline: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.prev-btn img, .next-btn img {
    height: 18px;
    object-fit: contain;
}

.prev-btn {
    order: 2;
    background-color: white;
    border-radius: 99px;
    padding: 4px 24px 4px 16px;
    outline: none;
    border: 1px solid #0B569A;
    font-size: 14px;
    font-weight: 500;
    color: #0B569A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.hero-quiz-content-height {
    height: 340px;
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-quiz-content-height {
        min-height: 416px;
    }

    .hero-quiz-img-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

    .hero-quiz-choice {
        position: relative;
        border-radius: 16px;
        background-color: white;
        border: 2px solid #CDDFF0;
        padding: 20px 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
    }

    .hero-quiz-choice img {
        height: 64px;
        object-fit: contain;
    }

    .prev-btn {
        order: 1;
        background-color: white;
        border-radius: 99px;
        padding: 4px 24px 4px 16px;
        outline: none;
        border: 1px solid #0B569A;
        font-size: 18px;
        font-weight: 500;
        color: #0B569A;
        display: flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
    }

    .next-btn {
        background-color: #0B569A;
        border-radius: 99px;
        padding: 4px 16px 4px 24px;
        outline: none;
        border: none;
        font-size: 18px;
        font-weight: 500;
        color: white;
        display: flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
    }

    #hero-quiz-choices {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        font-size: 14px;
        gap: 16px;
    }

    #next-btn-wrap {
        max-width: 726px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .hero-quiz-content-height {
        max-width: calc(100% - 64px);
        min-height: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    #hero-quiz-choices {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        font-size: 16px;
        width: 100%;
        max-width: 726px;
        margin: 0 auto;
        padding: 0;
    }

    #next-btn-wrap {
        width: 100%;
        max-width: 726px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .hero-quiz-content-height {
        max-width: 800px;
        min-height: 460px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    #hero-quiz-wrap-1 {
        gap: 24px;
        font-size: 28px;
    }

    #hero-quiz-wrap-2, #hero-quiz-wrap-3, #hero-quiz-wrap-4, #hero-quiz-wrap-5, #hero-quiz-wrap-6, #hero-quiz-wrap-7, #hero-quiz-wrap-8, #hero-quiz-wrap-9, #hero-quiz-wrap-10 {
        font-size: 28px;
    }
}

/* Second quiz */
.hero-quiz-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    width: calc(100% - 64px);
    margin: 0 auto;
}

.hero-quiz-small {
    font-size: 16px;
    font-weight: 500;
    color: #9BADBE;
}

.hero-quiz-header {
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
}

#hero-quiz-form-2 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.hero-quiz-input-wrap-2 > * {
    display: block;
}

.hero-quiz-input-wrap-2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #06335D;
}

.hero-quiz-input-wrap-2 .hero-quiz-input-2 {
    padding: 10px 16px;
    border-radius: 99px;
    font-size: 14px;
    border: 1px solid #9BADBE;
    outline: none;
}

.btn-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: calc(100% - 32px);
}

.next-btn-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.hero-quiz-progress-wrap {
    order: 1;
    grid-column: span 2 / span 2;
    flex-grow: 1;
}

.hero-quiz-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-quiz-progress > div {
    width: 100%;
    height: 4px;
    background-color: #D9D9D9;
    border-radius: 99px;
}

.hero-quiz-progress > div.passed {
    background-color: #1A76CC;
}

.question-text {
    font-size: 14px;
    font-weight: 500;
    color: #9BADBE;
}

@media (min-width: 640px) {
    .hero-quiz-progress-wrap {
        order: 2;
        grid-column: span 1 / span 1;
        flex-grow: 1;
    }

    .hero-quiz-progress {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .next-btn-wrap {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 24px;
    }
}

@media (min-width: 768px) {
    .btn-progress {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        width: calc(100% - 64px);
    }
}

@media (min-width: 1024px) {
    .next-btn-wrap {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 48px;
    }

    .btn-progress {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    #hero-quiz-form-2 {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 24px;
        width: 100%;
    }

    .hero-quiz-text {
        gap: 30px;
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-quiz-header {
        font-size: 48px;
    }

    .hero-quiz-input-wrap-2 {
        gap: 8px;
        font-size: 14px;
    }

    .hero-quiz-input-wrap-2 .hero-quiz-input-2 {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* Third quiz */
#hero-quiz-form-3 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
}

#hero-quiz-choices-3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    justify-content: center;
}

.hero-quiz-choice-3 {
    border: 1px solid #9BADBE;
    border-radius: 12px;
    padding: 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: #06335D;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.hero-quiz-choice-3:hover {
    border: 1px solid #1F7DD4;
}

.hero-quiz-choice-3:has(input[type="radio"]:checked) {
    background-color: rgba(31,125,212,0.1) !important;
    border: 1px solid #1F7DD4 !important;
}

@media (min-width: 1024px) {
    #hero-quiz-choices-3 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        align-items: stretch;
        justify-content: center;
    }

    .hero-quiz-choice-3 {
        border-radius: 16px;
        padding: 28px;
        font-size: 20px;
    }
}

/* Fourth quiz */
#hero-quiz-form-4 {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #06335D;
}

#hero-quiz-details-wrap-4 {
    flex-grow: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#hero-quiz-details-wrap-4 textarea {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    font-size: 14px;
    border: 1px solid #9BADBE;
    padding: 12px 20px;
    box-sizing: border-box;
    resize: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

#hero-quiz-details-tools {
    position: absolute;
    background-color: #F5F9FA;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
    left: 12px;
    bottom: 12px;
}

#hero-quiz-details-tools > * {
    height: 12px;
    object-fit: contain;
    cursor: pointer;
}

#hero-quiz-details-text-count-wrap {
    position: absolute;
    font-size: 12px;
    font-weight: 400;
    color: #9BADBE;
    right: 12px;
    bottom: 12px;
}

.hero-quiz-details-tools-divider {
    width: 1px;
    height: 100%;
    background-color: #E5E5E5;
}

@media (min-width: 768px) {
    #hero-quiz-details-wrap-4 textarea {
        width: 100%;
        height: 100%;
        border-radius: 24px;
        font-size: 16px;
        border: 1px solid #9BADBE;
        padding: 16px 24px;
        box-sizing: border-box;
        resize: none;
        outline: none;
        font-family: 'Montserrat', sans-serif;
    }

    #hero-quiz-details-tools {
        position: absolute;
        background-color: #F5F9FA;
        border-radius: 12px;
        padding: 12px;
        display: flex;
        gap: 12px;
        align-items: center;
        left: 24px;
        bottom: 16px;
    }

    #hero-quiz-details-tools > * {
        height: 20px;
    }

    #hero-quiz-details-text-count-wrap {
        position: absolute;
        font-size: 16px;
        font-weight: 400;
        color: #9BADBE;
        right: 24px;
        bottom: 16px;
    }
}

/* Quiz animation */
.slide-in-left {
    animation: slideInFromLeft 0.3s forwards;
}

.slide-out-left {
    animation: slideOutToLeft 0.3s forwards;
}

.slide-in-right {
    animation: slideInFromRight 0.3s forwards;
}

.slide-out-right {
    animation: slideOutToRight 0.3s forwards;
}

@media (max-width: 768px) {
    .slide-in-left {
        animation: slideInFromLeft 0.3s ease-out forwards;
    }

    .slide-out-left {
        animation: slideOutToLeft 0.3s ease-in forwards;
    }

    .slide-in-right {
        animation: slideInFromRight 0.3s ease-out forwards;
    }

    .slide-out-right {
        animation: slideOutToRight 0.3s ease-in forwards;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100vw);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100vw);
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100vw);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100vw);
    }
}

.circle-bg {
    position: absolute;
    width: 540px;
    object-fit: contain;
    z-index: -1;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .circle-bg {
        position: absolute;
        width: 726px;
        object-fit: contain;
        z-index: -1;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
    }
}

#other-hero-wrap {
    height: 520px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

#other-hero-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    z-index: 1;
    margin: 16px;
}

.other-hero-text-hide-mobile {
    display: none;
}

.other-hero-text-show-mobile {
    display: inline;
}

#other-hero-small-title {
    font-size: 10px;
    font-weight: 600;
    color: #0B569A;
    background-color: rgba(11,86,154,0.1);
    padding: 8px 20px;
    border-radius: 99px;
    display: inline-block;
}

#other-hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 28px;
    font-weight: 500;
    color: #06335D;
    line-height: 120%;
}

#other-hero-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: #374C5F;
    line-height: 140%;
}

#other-hero-icon-wrap {
    z-index: 1;
}

#other-hero-icon-1 {
    position: absolute;
    top: 100px;
    left: 35%;
}

#other-hero-icon-2 {
    position: absolute;
    top: 150px;
    right: 13%;
}

#other-hero-icon-3 {
    position: absolute;
    top: 32%;
    transform: translateY(-35%);
    left: 10%;
}

#other-hero-icon-4 {
    position: absolute;
    bottom: 80px;
    left: 22%;
}

#other-hero-icon-5 {
    position: absolute;
    bottom: 80px;
    right: 24%;
}

#other-hero-icon-wrap > div {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#other-hero-icon-wrap > div img {
    width: 24px;
    height: 24px;
}

#other-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#circular-content-bg {
    position: absolute;
    width: 75%;
    height: auto;
    object-fit: contain;
    top: calc(100vh + 72px);
    right: 0;
}

@media (min-width: 640px) {
    #other-hero-wrap {
        height: 640px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .other-hero-text-hide-mobile {
        display: block;
    }

    .other-hero-text-show-mobile {
        display: none;
    }

    #other-hero-icon-1 {
        position: absolute;
        top: 140px;
        left: 35%;
    }

    #other-hero-icon-2 {
        position: absolute;
        top: 190px;
        right: 13%;
    }
}

@media (min-width: 768px) {
    #other-hero-small-title {
        font-size: 12px;
        font-weight: 600;
        color: #0B569A;
        background-color: rgba(11,86,154,0.1);
        padding: 8px 20px;
        border-radius: 99px;
        display: inline-block;
    }

    #other-hero-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 32px;
        font-weight: 500;
        color: #06335D;
        line-height: 120%;
    }

    #other-hero-subtitle {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 16px;
        color: #374C5F;
        line-height: 140%;
    }

    #other-hero-icon-3 {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        left: 10%;
    }

    #circular-content-bg {
        position: absolute;
        width: 50%;
        height: auto;
        object-fit: contain;
        top: calc(100vh + 72px);
        right: 0;
    }
}

@media (min-width: 1024px) {
    #other-hero-small-title {
        font-size: 12px;
        font-weight: 600;
        color: #0B569A;
        background-color: rgba(11,86,154,0.1);
        padding: 8px 20px;
        border-radius: 99px;
        display: inline-block;
    }

    #other-hero-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 48px;
        font-weight: 500;
        color: #06335D;
        line-height: 120%;
    }

    #other-hero-subtitle {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 20px;
        color: #374C5F;
        line-height: 140%;
    }
}

/* Terms of Service */
#terms-content-wrap {
    position: relative;
    display: flex;
    align-items: start;
    gap: 48px;
    padding: 40px 24px;
}

#table-of-contents {
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    font-size: 24px;
    color: #06335D;
    font-weight: 500;
    display: none;
}

#table-of-contents-list {
    position: relative;
    margin-top: 24px;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
}

#table-of-contents-indicator {
    position: absolute;
    left: 0;
    width: 2px;
    background-color: #0B569A;
    transition: top 0.3s ease;
    padding: 0 !important;
}

#table-of-contents-list > * {
    padding: 8px 12px;
    color: #AAAAAA;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#table-of-contents-list > *.active {
    color: #0B569A;
}

#back-to-top {
    color: black;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#back-to-top img {
    width: 24px;
    height: 24px;
}

#terms-content {
    display: flex;
    flex-direction: column;
}

#terms-content > div {
    padding-bottom: 48px;
}

.terms-title {
    font-size: 24px;
    font-weight: 600;
    color: #06335D;
    margin-bottom: 12px;
}

.terms-content {
    font-size: 14px;
    font-weight: 500;
    line-height: 160%;
    color: #374C5F;
}

.terms-content ul {
    margin-left: -16px;
}

@media (min-width: 768px) {
    #terms-content-wrap {
        position: relative;
        display: flex;
        align-items: start;
        gap: 48px;
        padding: 80px 48px;
    }

    #table-of-contents {
        flex-shrink: 0;
        position: sticky;
        top: 80px;
        font-size: 24px;
        color: #06335D;
        font-weight: 500;
        display: block;
    }
}

@media (min-width: 1024px) {
    #terms-content-wrap {
        position: relative;
        display: flex;
        align-items: start;
        gap: 48px;
        padding: 80px 48px;
    }

    #table-of-contents {
        flex-shrink: 0;
        position: sticky;
        top: 120px;
        font-size: 24px;
        color: #06335D;
        font-weight: 500;
    }

    #table-of-contents-list > * {
        padding: 8px 12px;
        color: #AAAAAA;
        font-size: 16px;
        font-weight: 500;
    }
}

@media (min-width: 1280px) {
    #terms-content-wrap {
        position: relative;
        display: flex;
        align-items: start;
        gap: 120px;
        padding: 120px 48px;
    }
}

/* Contact Us */
#contact-form-wrap {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
}

#contact-form {
    max-width: 778px;
    margin: 0 auto;
    flex-grow: 1;
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
}

#contact-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 120%;
    color: #06335D;
    margin-bottom: 8px;
    text-align: center;
}

#contact-subtitle {
    font-size: 14px;
    color: #5E6F7E;
    margin-bottom: 32px;
    text-align: center;
}

#contact-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#contact-input {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#contact-name {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#contact-input input {
    flex-grow: 1;
    width: 100%;
    display: block;
    border-radius: 99px;
    padding: 16px 20px;
    border: 1px solid #DDDDDD;
    font-size: 14px;
    font-weight: 500;
    box-sizing: border-box;
    outline: none;
}

#contact-input textarea {
    flex-grow: 1;
    width: 100%;
    display: block;
    border-radius: 14px;
    padding: 16px 20px;
    border: 1px solid #DDDDDD;
    font-size: 14px;
    font-weight: 500;
    box-sizing: border-box;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

#contact-input input:focus, #contact-input textarea:focus {
    border: 1px solid #1F7DD4;
}

#contact-input-wrap button {
    flex-grow: 1;
    width: 100%;
    padding: 16px 20px;
    border-radius: 99px;
    background-color: #0B569A;
    color: white;
    font-weight: 600;
    font-size: 16px;
    outline: none;
    border: 0;
    cursor: pointer;
}

#contact-form-terms {
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    color: #AAAAAA;
}

#contact-form-terms a {
    color: #06335D;
    text-decoration: none;
    font-weight: 600;
}

@media (min-width: 640px) {
    #contact-name {
        width: 100%;
        flex-grow: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    #contact-form {
        max-width: 778px;
        margin: 0 auto;
        flex-grow: 1;
        background-color: white;
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
    }
}

#faq {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 40px;
}

#faq-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#faq-small-text {
    font-size: 12px;
    font-weight: 600;
    color: #0B569A;
    background-color: rgba(11,86,154,0.1);
    padding: 8px 20px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 16px;
}

#faq-title {
    font-size: 28px;
    font-weight: 500;
    color: #06335D;
    line-height: 120%;
    margin-bottom: 32px;
    text-align: center;
}

#faq-subtitle {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: #374C5F;
    line-height: 120%;
}

#faq-subtitle img {
    height: 48px;
}

#faq-right {
    grid-column: span 3 / span 3;
    padding-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}

.faq-accordion {
    padding-bottom: 24px;
    flex-grow: 1;
    width: 100%;
    border-bottom: 1px solid #B4C2CE;
}

.faq-accordion .accordion {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 18px;
    font-weight: 500;
    color: #06335D;
    cursor: pointer;
}

.faq-accordion .accordion svg {
    display: block;
    width: 24px;
    height: 24px;
}

.panel {
    margin-top: 12px;
    font-size: 16px;
    color: #5E6F7E;
    line-height: 130%;
    display: none;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

@media (min-width: 768px) {
    #contact-form-wrap {
        padding: 120px 48px;
    }

    #contact-form {
        max-width: 778px;
        margin: 0 auto;
        flex-grow: 1;
        background-color: white;
        border-radius: 16px;
        padding: 48px;
        box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
    }

    #contact-title {
        font-size: 32px;
        font-weight: 500;
        line-height: 120%;
        color: #06335D;
        margin-bottom: 8px;
        text-align: center;
    }

    #contact-subtitle {
        font-size: 16px;
        color: #5E6F7E;
        margin-bottom: 32px;
        text-align: center;
    }

    #contact-input input {
        flex-grow: 1;
        width: 100%;
        display: block;
        border-radius: 99px;
        padding: 16px 20px;
        border: 1px solid #DDDDDD;
        font-size: 16px;
        font-weight: 500;
        box-sizing: border-box;
        outline: none;
    }

    #contact-input textarea {
        flex-grow: 1;
        width: 100%;
        display: block;
        border-radius: 14px;
        padding: 16px 20px;
        border: 1px solid #DDDDDD;
        font-size: 16px;
        font-weight: 500;
        box-sizing: border-box;
        outline: none;
        font-family: 'Montserrat', sans-serif;
    }

    #contact-input-wrap button {
        flex-grow: 1;
        width: 100%;
        padding: 16px 20px;
        border-radius: 99px;
        background-color: #0B569A;
        color: white;
        font-weight: 600;
        font-size: 18px;
        outline: none;
        border: 0;
        cursor: pointer;
    }

    #faq-title {
        font-size: 36px;
        font-weight: 500;
        color: #06335D;
        line-height: 120%;
        margin-bottom: 32px;
        text-align: center;
    }

    #faq-subtitle {
        display: flex;
        align-items: center;
        gap: 24px;
        font-size: 16px;
        color: #374C5F;
        line-height: 120%;
    }

    #faq-subtitle img {
        height: 77px;
    }
}

@media (min-width: 1024px) {
    #faq {
        padding: 120px 48px;
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 80px;
    }

    #faq-left {
        grid-column: span 2 / span 2;
        align-items: start;
    }

    #faq-title {
        text-align: left;
    }

    #faq {
        padding: 120px 48px;
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        row-gap: 40px;
    }

    .faq-accordion .accordion {
        display: flex;
        justify-content: space-between;
        font-size: 22px;
        font-weight: 500;
        color: #06335D;
    }

    .faq-accordion {
        padding-bottom: 32px;
        flex-grow: 1;
        width: 100%;
        border-bottom: 1px solid #B4C2CE;
    }

    #faq-right {
        grid-column: span 3 / span 3;
        padding-top: 48px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
}

@media (min-width: 1280px) {
    #faq {
        padding: 120px 48px;
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 160px;
    }

    #faq-title {
        font-size: 48px;
        font-weight: 500;
        color: #06335D;
        line-height: 120%;
        margin-bottom: 32px;
    }

    #faq-subtitle {
        display: flex;
        align-items: center;
        gap: 24px;
        font-size: 18px;
        color: #374C5F;
        line-height: 120%;
    }
}

