/* ==========================================================================
   WVT FAQ
   ========================================================================== */

   .wvt-faq-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero */

.wvt-faq-hero {
    text-align: center;
    margin-bottom: 36px;
    padding: 36px 24px;
    border-radius: 22px;
    background: #f5f8fb;
}

.wvt-faq-hero h2 {
    margin-bottom: 10px;
    font-size: 34px;
}

.wvt-faq-hero p {
    margin-bottom: 22px;
    font-size: 17px;
}

/* Search */

.wvt-faq-search-wrap {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.wvt-faq-search-wrap::before {
    content: none !important;
    display: none !important;
}


.wvt-faq-search {
    width: 100%;
    padding: 15px 50px 15px 50px;
    border: 1px solid #d9e1ea;
    border-radius: 999px;
    background: #ffffff;
    font-size: 16px;
    color: #193647;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.wvt-faq-search:focus {
    border-color: #193647;
    box-shadow: 0 0 0 4px rgba(25, 54, 71, 0.10);
}

.wvt-faq-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .18s ease;
}

.wvt-faq-clear svg {
    width: 18px;
    height: 18px;
    stroke: #7b8794;
    stroke-width: 2.5;
    stroke-linecap: round;
    fill: none;
}

.wvt-faq-clear:hover {
    background: #eef3f8;
}

.wvt-faq-clear:hover svg {
    stroke: #193647;
}

.wvt-faq-clear.is-visible {
    opacity: 1;
    visibility: visible;
}

.wvt-faq-search-icon {
    position: absolute;
    left: 18px;
    margin-left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wvt-faq-search-icon svg {
    width: 18px;
    height: 18px;
    stroke: #94a3b8;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Search feedback */

.wvt-faq-search-feedback {
    margin: 16px auto 0;
    max-width: 640px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #ffffff;
    color: #193647;
    font-size: 15px;
    text-align: center;
    border: 1px solid #d9e1ea;
}

.wvt-faq-search-feedback strong {
    color: #193647;
}

/* Category cards */

.wvt-faq-category-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 44px;
}

.wvt-faq-category-card {
    display: block;
    padding: 20px;
    border: 1px solid #e3e8ef;
    border-radius: 18px;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wvt-faq-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.wvt-faq-category-icon {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.wvt-faq-category-name {
    display: block;
    font-weight: 700;
    color: #193647;
}

.wvt-faq-category-card-intro {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
}

/* Sections */

.wvt-faq-section {
    margin-bottom: 46px;
    scroll-margin-top: 120px;
}

.wvt-faq-section-heading {
    margin-bottom: 18px;
}

.wvt-faq-section-heading h3 {
    margin-bottom: 6px;
    font-size: 26px;
}

.wvt-faq-section-heading p {
    color: #64748b;
    margin: 0;
}

/* Accordion */

.wvt-faq-items {
    border: 1px solid #e3e8ef;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
}

.wvt-faq-item + .wvt-faq-item {
    border-top: 1px solid #e3e8ef;
}

.wvt-faq-question {
    width: 100%;
    border: 0;
    background: #ffffff;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: #193647 !important;
}

.wvt-faq-question span {
    color: #193647 !important;
}

.wvt-faq-question:hover,
.wvt-faq-question:focus,
.wvt-faq-question:active {
    background: #f5f8fb !important;
    color: #193647 !important;
}

.wvt-faq-question:hover span,
.wvt-faq-question:focus span,
.wvt-faq-question:active span {
    color: #193647 !important;
}

.wvt-faq-toggle {
    flex: 0 0 auto;
    font-size: 24px;
    line-height: 1;
    transition: transform .18s ease;
}

.wvt-faq-item.is-open .wvt-faq-toggle {
    transform: rotate(45deg);
}

.wvt-faq-answer {
    display: none;
    background: #ffffff;
}

.wvt-faq-item.is-open .wvt-faq-answer {
    display: block;
}

.wvt-faq-answer-inner {
    padding: 0 22px 22px 22px;
    color: #334155;
    line-height: 1.65;
}

.wvt-faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.wvt-faq-direct-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    color: #64748b;
}

/* No results */

.wvt-faq-no-results {
    padding: 18px 22px;
    border-radius: 14px;
    background: #fff7ed;
    color: #9a3412;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive */

@media (max-width: 900px) {
    .wvt-faq-category-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .wvt-faq-hero {
        padding: 28px 18px;
    }

    .wvt-faq-hero h2 {
        font-size: 28px;
    }

    .wvt-faq-category-cards {
        grid-template-columns: 1fr;
    }

    .wvt-faq-question {
        font-size: 16px;
        padding: 18px;
    }

    .wvt-faq-answer-inner {
        padding: 0 18px 20px 18px;
    }

    .wvt-faq-search-feedback {
        border-radius: 16px;
    }
}.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media(max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media(max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:inline-flex;width:100%}.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}@media(max-width: 976px){.uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}}@media(max-width: 767px){.uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}}.uagb-buttons__outer-wrap .uagb-buttons-repeater{display:flex;justify-content:center;align-items:center;transition:box-shadow .2s ease}.uagb-buttons__outer-wrap .uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center}.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}.uagb-block-f5221382.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap {gap: 10px;}.uagb-block-f5221382.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: left;align-items: center;}.uagb-block-f5221382 .uagb-button__wrapper{margin-top: -30px;margin-bottom: 0px;margin-left: 0px;margin-right: 0px;}.wp-block-uagb-buttons .uagb-block-4947f712.wp-block-uagb-buttons-child .uagb-buttons-repeater{background: #c13584;}.wp-block-uagb-buttons .uagb-block-4947f712 .wp-block-button__link{background: #c13584;}.wp-block-uagb-buttons .uagb-block-4947f712 .wp-block-button__link:hover{background: #a83296;}.wp-block-uagb-buttons .uagb-block-4947f712 .wp-block-button__link:focus{background: #a83296;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-button__wrapper .uagb-buttons-repeater{padding-top: 12px;padding-bottom: 12px;padding-left: 14px;padding-right: 14px;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-button__wrapper  .uagb-buttons-repeater.wp-block-button__link{box-shadow: 0px 0px 0 #00000026;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-button__wrapper  .uagb-buttons-repeater.wp-block-button__link:hover{box-shadow: 0px 0px 0 #00000026;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-buttons-repeater.wp-block-button__link{border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-color: #333;border-style: solid;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-buttons-repeater.wp-block-button__link:hover{border-color: #333;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-buttons-repeater.wp-block-button__link:focus{border-color: #333;}.wp-block-uagb-buttons .uagb-block-4947f712.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater{border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-color: #333;border-style: solid;}.wp-block-uagb-buttons .uagb-block-4947f712.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater:hover{border-color: #333;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-buttons-repeater .uagb-button__icon > svg{width: 35px;height: 35px;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-buttons-repeater .uagb-button__icon-position-after{margin-left: 5px;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-buttons-repeater .uagb-button__icon-position-before{margin-right: 5px;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-button__link{text-transform: normal;text-decoration: none;}@media only screen and (max-width: 976px) {.uagb-block-f5221382.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: center;align-items: center;}.uagb-block-f5221382.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button{width: auto;}.wp-block-uagb-buttons .uagb-block-4947f712.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater{border-style: solid;border-color: #333;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-buttons-repeater.wp-block-button__link{border-style: solid;border-color: #333;}}@media only screen and (max-width: 767px) {.uagb-block-f5221382.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: center;align-items: center;}.uagb-block-f5221382.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button{width: auto;}.wp-block-uagb-buttons .uagb-block-4947f712.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater{border-style: solid;border-color: #333;}.wp-block-uagb-buttons .uagb-block-4947f712 .uagb-buttons-repeater.wp-block-button__link{border-style: solid;border-color: #333;}}.uagb-block-5237537e.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap {gap: 10px;}.uagb-block-5237537e.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: left;align-items: center;}.uagb-block-5237537e .uagb-button__wrapper{margin-top: -30px;margin-bottom: 0px;margin-left: 0px;margin-right: 0px;}.wp-block-uagb-buttons .uagb-block-81e1322e.wp-block-uagb-buttons-child .uagb-buttons-repeater{background: #ff0000;}.wp-block-uagb-buttons .uagb-block-81e1322e .wp-block-button__link{background: #ff0000;}.wp-block-uagb-buttons .uagb-block-81e1322e .wp-block-button__link:hover{background: #b82727;}.wp-block-uagb-buttons .uagb-block-81e1322e .wp-block-button__link:focus{background: #b82727;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-button__wrapper .uagb-buttons-repeater{padding-top: 12px;padding-bottom: 12px;padding-left: 14px;padding-right: 14px;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-button__wrapper  .uagb-buttons-repeater.wp-block-button__link{box-shadow: 0px 0px 0 #00000026;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-button__wrapper  .uagb-buttons-repeater.wp-block-button__link:hover{box-shadow: 0px 0px 0 #00000026;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-buttons-repeater.wp-block-button__link{border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-color: #333;border-style: solid;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-buttons-repeater.wp-block-button__link:hover{border-color: #333;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-buttons-repeater.wp-block-button__link:focus{border-color: #333;}.wp-block-uagb-buttons .uagb-block-81e1322e.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater{border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-color: #333;border-style: solid;}.wp-block-uagb-buttons .uagb-block-81e1322e.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater:hover{border-color: #333;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-buttons-repeater .uagb-button__icon > svg{width: 35px;height: 35px;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-buttons-repeater .uagb-button__icon-position-after{margin-left: 5px;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-buttons-repeater .uagb-button__icon-position-before{margin-right: 5px;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-button__link{text-transform: normal;text-decoration: none;}@media only screen and (max-width: 976px) {.uagb-block-5237537e.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: center;align-items: center;}.uagb-block-5237537e.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button{width: auto;}.wp-block-uagb-buttons .uagb-block-81e1322e.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater{border-style: solid;border-color: #333;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-buttons-repeater.wp-block-button__link{border-style: solid;border-color: #333;}}@media only screen and (max-width: 767px) {.uagb-block-5237537e.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: center;align-items: center;}.uagb-block-5237537e.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button{width: auto;}.wp-block-uagb-buttons .uagb-block-81e1322e.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater{border-style: solid;border-color: #333;}.wp-block-uagb-buttons .uagb-block-81e1322e .uagb-buttons-repeater.wp-block-button__link{border-style: solid;border-color: #333;}}.uagb-block-75663cab.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap {gap: 10px;}.uagb-block-75663cab.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: left;align-items: center;}.uagb-block-75663cab .uagb-button__wrapper{margin-top: -30px;margin-bottom: 0px;margin-left: 0px;margin-right: 0px;}.wp-block-uagb-buttons .uagb-block-ff717c08.wp-block-uagb-buttons-child .uagb-buttons-repeater{background: #000000;}.wp-block-uagb-buttons .uagb-block-ff717c08 .wp-block-button__link{background: #000000;}.wp-block-uagb-buttons .uagb-block-ff717c08 .wp-block-button__link:hover{background: #363333;}.wp-block-uagb-buttons .uagb-block-ff717c08 .wp-block-button__link:focus{background: #363333;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-button__wrapper .uagb-buttons-repeater{padding-top: 12px;padding-bottom: 12px;padding-left: 14px;padding-right: 14px;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-button__wrapper  .uagb-buttons-repeater.wp-block-button__link{box-shadow: 0px 0px 0 #00000026;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-button__wrapper  .uagb-buttons-repeater.wp-block-button__link:hover{box-shadow: 0px 0px 0 #00000026;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-buttons-repeater.wp-block-button__link{border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-color: #333;border-style: solid;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-buttons-repeater.wp-block-button__link:hover{border-color: #333;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-buttons-repeater.wp-block-button__link:focus{border-color: #333;}.wp-block-uagb-buttons .uagb-block-ff717c08.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater{border-top-width: 0px;border-left-width: 0px;border-right-width: 0px;border-bottom-width: 0px;border-color: #333;border-style: solid;}.wp-block-uagb-buttons .uagb-block-ff717c08.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater:hover{border-color: #333;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-buttons-repeater .uagb-button__icon > svg{width: 35px;height: 35px;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-buttons-repeater .uagb-button__icon-position-after{margin-left: 5px;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-buttons-repeater .uagb-button__icon-position-before{margin-right: 5px;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-button__link{text-transform: normal;text-decoration: none;}@media only screen and (max-width: 976px) {.uagb-block-75663cab.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: center;align-items: center;}.uagb-block-75663cab.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button{width: auto;}.wp-block-uagb-buttons .uagb-block-ff717c08.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater{border-style: solid;border-color: #333;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-buttons-repeater.wp-block-button__link{border-style: solid;border-color: #333;}}@media only screen and (max-width: 767px) {.uagb-block-75663cab.uagb-buttons__outer-wrap .uagb-buttons__wrap {justify-content: center;align-items: center;}.uagb-block-75663cab.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button{width: auto;}.wp-block-uagb-buttons .uagb-block-ff717c08.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater{border-style: solid;border-color: #333;}.wp-block-uagb-buttons .uagb-block-ff717c08 .uagb-buttons-repeater.wp-block-button__link{border-style: solid;border-color: #333;}}