/***
=============================================
Page Header
=============================================
***/
.page-header {
    position: relative;
    display: block;
    padding: 173px 0px 171px;
    overflow: hidden;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
   
    background-blend-mode: luminosity;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.page-header__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    content: "";
    z-index: -1;
}

.page-header .shape1 {
    position: absolute;
    top: -130px;
    left: -120px;
    opacity: 0.5;
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
}

.page-header__inner h1,
.page-header__inner h2 {
    color: var(--cleanin-white);
    font-size: 50px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
}

.page-header__inner .thm-breadcrumb li {
    color: var(--cleanin-white);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin-left: 5px;
    margin-right: 5px;
}

.page-header__inner .thm-breadcrumb li:first-child {
    margin-left: 0px;
}

.page-header__inner .thm-breadcrumb li:last-child {
    margin-right: 0px;
}

.page-header__inner .thm-breadcrumb li a {
    color: var(--cleanin-white);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb li span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    top: 2px;
}

.services-overview {
    position: relative;
    display: block;
    padding: 70px 0 45px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf5 100%);
    overflow: hidden;
}

.services-overview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 90, 170, 0.08), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(34, 197, 94, 0.12), transparent 28%);
    pointer-events: none;
}

.services-overview__panel {
    position: relative;
    z-index: 1;
    padding: 42px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 70px rgba(0, 43, 78, 0.12);
    transform-style: preserve-3d;
    transition: transform 400ms ease, box-shadow 400ms ease;
    overflow: hidden;
}

.services-overview__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: conic-gradient(from 120deg, #0057a8, #28d365, #dce9f5, #0057a8);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: servicesOverviewBorder 7s linear infinite;
    pointer-events: none;
}

.services-overview__panel:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-8px);
    box-shadow: 0 34px 90px rgba(0, 43, 78, 0.18);
}

.services-overview__glow {
    position: absolute;
    width: 240px;
    height: 240px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 211, 101, 0.22), transparent 68%);
    transform: translateZ(-1px);
}

.services-overview__title {
    position: relative;
    padding-right: 18px;
}

.services-overview__title h2 {
    margin: 14px 0 22px;
    color: var(--cleanin-black);
    font-size: 38px;
    line-height: 1.18em;
    font-weight: 800;
}

.services-overview__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-overview__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #00345a;
    background: #edf5fb;
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 700;
    border: 1px solid rgba(0, 87, 168, 0.14);
    transition: transform 300ms ease, background-color 300ms ease, color 300ms ease;
}

.services-overview__chips span:hover {
    transform: translateY(-3px);
    color: #ffffff;
    background: #0057a8;
}

.services-overview__content {
    position: relative;
    padding: 30px;
    border-radius: 14px;
    background: linear-gradient(145deg, #f8fcff, #ffffff);
    border: 1px solid rgba(0, 87, 168, 0.12);
}

.services-overview__content p {
    margin: 0;
    color: #5f666d;
    font-size: 20px;
    line-height: 1.72em;
}

.services-overview__content p + p {
    margin-top: 18px;
}

@keyframes servicesOverviewBorder {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .services-overview {
        padding: 55px 0 35px;
    }

    .services-overview__panel {
        padding: 30px;
    }

    .services-overview__title {
        padding-right: 0;
    }

    .services-overview__title h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .services-overview {
        padding: 42px 0 28px;
    }

    .services-overview__panel {
        padding: 22px;
        border-radius: 14px;
    }

    .services-overview__title h2 {
        font-size: 27px;
    }

    .services-overview__content {
        padding: 22px;
    }

    .services-overview__content p {
        font-size: 17px;
        line-height: 1.65em;
    }
}

/* Services page introduction - professional layout */
.services-overview {
    padding: 60px 0 38px;
    background: #f6fafc;
}

.services-overview::before {
    background:
        linear-gradient(135deg, rgba(0, 87, 168, 0.04) 0%, transparent 42%),
        radial-gradient(circle at 88% 18%, rgba(40, 211, 101, 0.1), transparent 26%);
}

.services-overview__panel {
    max-width: 1180px;
    margin: 0 auto;
    padding: 38px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 74, 148, 0.12);
    border-left: 5px solid #0057a8;
    box-shadow: 0 18px 45px rgba(0, 43, 78, 0.09);
}

.services-overview__panel::before {
    inset: auto 0 0 0;
    height: 4px;
    padding: 0;
    border-radius: 0;
    background: linear-gradient(90deg, #0057a8, #27c767);
    -webkit-mask: none;
    mask: none;
    animation: none;
}

.services-overview__panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 43, 78, 0.12);
}

.services-overview__glow {
    display: none;
}

.services-overview__title {
    padding-right: 28px;
}

.services-overview__title .sec-title__tagline {
    margin-bottom: 12px;
}

.services-overview__title h2 {
    max-width: 430px;
    margin: 0 0 22px;
    color: #062b47;
    font-size: 34px;
    line-height: 1.25em;
    font-weight: 800;
    letter-spacing: 0;
}

.services-overview__chips {
    gap: 9px;
}

.services-overview__chips span {
    min-height: 36px;
    padding: 8px 13px;
    border-radius: 7px;
    color: #064572;
    background: #edf5fb;
    font-size: 14px;
    box-shadow: none;
}

.services-overview__chips span:hover {
    transform: translateY(-2px);
}

.services-overview__content {
    padding: 28px 30px;
    border-radius: 10px;
    background: #fbfdff;
    border: 1px solid rgba(0, 74, 148, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.services-overview__content p {
    color: #5d6872;
    font-size: 17px;
    line-height: 1.75em;
    font-weight: 400;
}

.services-overview__content p + p {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 74, 148, 0.09);
}

.verification-overview .services-overview__content p + p {
    margin-top: 16px;
    padding-top: 16px;
}

@media (max-width: 991px) {
    .services-overview {
        padding: 44px 0 30px;
    }

    .services-overview__panel {
        padding: 30px;
    }

    .services-overview__title {
        padding-right: 0;
    }

    .services-overview__title h2 {
        max-width: none;
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .services-overview {
        padding: 34px 0 24px;
    }

    .services-overview__panel {
        padding: 22px 18px;
        border-radius: 10px;
        border-left-width: 4px;
    }

    .services-overview__title h2 {
        font-size: 25px;
    }

    .services-overview__content {
        padding: 20px;
    }

    .services-overview__content p {
        font-size: 16px;
        line-height: 1.68em;
    }
}

.services-maid-intro .sec-title {
    margin-bottom: 24px;
}

.services-maid-intro .sec-title__title {
    max-width: 640px;
    font-size: 30px;
    line-height: 1.18em;
}

.services-maid-intro__summary {
    margin-bottom: 24px;
    padding: 20px 24px;
    border-left: 4px solid #0057a8;
    border-radius: 8px;
    background: #f4f9fd;
}

.services-maid-intro__summary p {
    margin: 0;
    color: #5e6871;
    font-size: 20px;
    line-height: 1.65em;
}

.services-maid-intro__box {
    position: relative;
    padding: 26px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 87, 168, 0.12);
    box-shadow: 0 16px 40px rgba(0, 43, 78, 0.08);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.services-maid-intro__box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 52px rgba(0, 43, 78, 0.12);
}

.services-maid-intro__box h3 {
    margin: 0 0 18px;
    color: #062b47;
    font-size: 24px;
    line-height: 1.25em;
    font-weight: 800;
}

.services-maid-intro__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.services-maid-intro__grid div {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #24384a;
    background: #f7fafc;
    font-size: 17px;
    line-height: 1.3em;
    font-weight: 600;
    border: 1px solid rgba(0, 87, 168, 0.08);
    transition: color 300ms ease, background-color 300ms ease, transform 300ms ease;
}

.services-maid-intro__grid div:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: #0057a8;
}

.services-maid-intro__grid span {
    margin-right: 10px;
    color: #0057a8;
    font-size: 16px;
    transition: color 300ms ease;
}

.services-maid-intro__grid div:hover span {
    color: #ffffff;
}

.services-maid-intro__cta {
    margin-top: 28px;
}

.services-maid-intro__box .services-maid-intro__cta {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 87, 168, 0.12);
}

.services-maid-intro__cta-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-radius: 8px;
    color: #062b47;
    background: #eef6fd;
    border: 1px solid rgba(0, 87, 168, 0.14);
    box-shadow: 0 10px 24px rgba(0, 43, 78, 0.06);
}

.services-maid-intro__box .services-maid-intro__cta-label {
    width: 100%;
    justify-content: flex-start;
    box-shadow: none;
}

.services-maid-intro__cta-label span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 6px;
    color: #ffffff;
    background: #0057a8;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.services-maid-intro__cta-label strong {
    color: #062b47;
    font-size: 17px;
    line-height: 1.25em;
    font-weight: 600;
}

.services-livein-section {
    padding-top: 0;
}

.services-parttime-section {
    padding-top: 0;
}

.services-fulltime-section {
    padding-top: 0;
}

.services-cook-section {
    padding-top: 0;
}

.services-chef-section {
    padding-top: 0;
}

.services-babysitter-section {
    padding-top: 0;
}

.services-elder-section {
    padding-top: 0;
}

.services-patient-section {
    padding-top: 0;
}

.services-japa-section {
    padding-top: 0;
}

.services-driver-section {
    padding-top: 0;
}

.services-watchman-section {
    padding-top: 0;
}

.services-housekeeping-section {
    padding-top: 0;
}

.services-livein-section .row {
    row-gap: 40px;
}

.services-parttime-section .row {
    row-gap: 40px;
}

.services-fulltime-section .row {
    row-gap: 40px;
}

.services-cook-section .row {
    row-gap: 40px;
}

.services-chef-section .row {
    row-gap: 40px;
}

.services-babysitter-section .row {
    row-gap: 40px;
}

.services-elder-section .row {
    row-gap: 40px;
}

.services-patient-section .row {
    row-gap: 40px;
}

.services-japa-section .row {
    row-gap: 40px;
}

.services-driver-section .row {
    row-gap: 40px;
}

.services-watchman-section .row {
    row-gap: 40px;
}

.services-housekeeping-section .row {
    row-gap: 40px;
}

.services-livein-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-parttime-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-fulltime-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-cook-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-chef-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-babysitter-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-elder-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-patient-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-japa-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-driver-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-watchman-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-housekeeping-section__img .about-two__img1 {
    margin-left: 0;
    margin-right: 0;
}

.services-maid-intro--livein .services-maid-intro__summary {
    border-left-color: #27c767;
    background: #f4fbf6;
}

.services-maid-intro--livein .services-maid-intro__box {
    border-color: rgba(39, 199, 103, 0.18);
}

.services-maid-intro--parttime .services-maid-intro__summary {
    border-left-color: #f0a500;
    background: #fffaf0;
}

.services-maid-intro--parttime .services-maid-intro__box {
    border-color: rgba(240, 165, 0, 0.18);
}

.services-maid-intro--fulltime .services-maid-intro__summary {
    border-left-color: #7b61ff;
    background: #f7f5ff;
}

.services-maid-intro--fulltime .services-maid-intro__box {
    border-color: rgba(123, 97, 255, 0.18);
}

.services-maid-intro--cook .services-maid-intro__summary {
    border-left-color: #e85d04;
    background: #fff7f0;
}

.services-maid-intro--cook .services-maid-intro__box {
    border-color: rgba(232, 93, 4, 0.18);
}

.services-maid-intro--chef .services-maid-intro__summary {
    border-left-color: #c1121f;
    background: #fff5f6;
}

.services-maid-intro--chef .services-maid-intro__box {
    border-color: rgba(193, 18, 31, 0.16);
}

.services-maid-intro--babysitter .services-maid-intro__summary {
    border-left-color: #ff6f91;
    background: #fff5f8;
}

.services-maid-intro--babysitter .services-maid-intro__box {
    border-color: rgba(255, 111, 145, 0.18);
}

.services-maid-intro--elder .services-maid-intro__summary {
    border-left-color: #118ab2;
    background: #f1fbff;
}

.services-maid-intro--elder .services-maid-intro__box {
    border-color: rgba(17, 138, 178, 0.18);
}

.services-maid-intro--patient .services-maid-intro__summary {
    border-left-color: #6a4c93;
    background: #f8f4ff;
}

.services-maid-intro--patient .services-maid-intro__box {
    border-color: rgba(106, 76, 147, 0.18);
}

.services-maid-intro--japa .services-maid-intro__summary {
    border-left-color: #ff8fab;
    background: #fff6f9;
}

.services-maid-intro--japa .services-maid-intro__box {
    border-color: rgba(255, 143, 171, 0.2);
}

.services-maid-intro--driver .services-maid-intro__summary {
    border-left-color: #023e8a;
    background: #f1f7ff;
}

.services-maid-intro--driver .services-maid-intro__box {
    border-color: rgba(2, 62, 138, 0.18);
}

.services-maid-intro--watchman .services-maid-intro__summary {
    border-left-color: #2f3e46;
    background: #f5f7f8;
}

.services-maid-intro--watchman .services-maid-intro__box {
    border-color: rgba(47, 62, 70, 0.18);
}

.services-maid-intro--housekeeping .services-maid-intro__summary {
    border-left-color: #00a896;
    background: #f1fffc;
}

.services-maid-intro--housekeeping .services-maid-intro__box {
    border-color: rgba(0, 168, 150, 0.18);
}

@media (max-width: 1199px) {
    .services-maid-intro .sec-title__title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .services-maid-intro .sec-title__title {
        font-size: 30px;
    }

    .services-maid-intro__summary {
        padding: 18px;
    }

    .services-maid-intro__summary p {
        font-size: 17px;
    }

    .services-maid-intro__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .services-maid-intro__box {
        padding: 20px;
    }

    .services-maid-intro__box h3 {
        font-size: 21px;
    }

    .services-maid-intro__grid div {
        font-size: 16px;
    }

    .services-maid-intro__cta-label {
        width: 100%;
        align-items: flex-start;
    }

    .services-maid-intro__cta-label strong {
        font-size: 16px;
    }
}

.services-area-cta {
    position: relative;
    padding: 40px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
    overflow: hidden;
}

.services-area-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 24%, rgba(0, 87, 168, 0.08), transparent 28%),
        radial-gradient(circle at 88% 76%, rgba(39, 199, 103, 0.1), transparent 30%);
    pointer-events: none;
}

.services-area-cta__wrap {
    position: relative;
    z-index: 1;
}

.services-area-cta__areas,
.services-area-cta__card {
    position: relative;
    height: 100%;
    padding: 36px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 87, 168, 0.12);
    box-shadow: 0 18px 48px rgba(0, 43, 78, 0.08);
    overflow: hidden;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.services-area-cta__areas::before,
.services-area-cta__card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, #0057a8, #27c767);
}

.services-area-cta__areas:hover,
.services-area-cta__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 43, 78, 0.12);
}

.services-area-cta .sec-title {
    margin-bottom: 20px;
}

.services-area-cta .sec-title__title {
    font-size: 42px;
    line-height: 1.15em;
}

.services-area-cta__areas p,
.services-area-cta__card p {
    margin: 0;
    color: #5d6872;
    font-size: 18px;
    line-height: 1.75em;
}

.services-area-cta__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.services-area-cta__chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 8px;
    color: #063a63;
    background: #edf5fb;
    border: 1px solid rgba(0, 87, 168, 0.12);
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 800;
    transition: color 300ms ease, background-color 300ms ease, transform 300ms ease;
}

.services-area-cta__chips span:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: #0057a8;
}

.services-area-cta__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #062b47;
    border-color: rgba(255, 255, 255, 0.12);
}

.services-area-cta__label {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 6px;
    color: #062b47;
    background: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
}

.services-area-cta__card h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.22em;
    font-weight: 900;
}

.services-area-cta__card p {
    color: rgba(255, 255, 255, 0.78);
}

.services-area-cta__actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.services-area-cta__actions div {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 13px 15px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 17px;
    line-height: 1.25em;
    font-weight: 800;
    transition: transform 300ms ease, background-color 300ms ease;
}

.services-area-cta__actions div:hover {
    transform: translateX(4px);
    background: rgba(39, 199, 103, 0.22);
}

.services-area-cta__actions span {
    margin-right: 10px;
    color: #27c767;
}

@media (max-width: 991px) {
    .services-area-cta {
        padding: 30px 0 70px;
    }

    .services-area-cta__areas,
    .services-area-cta__card {
        padding: 28px;
    }

    .services-area-cta .sec-title__title {
        font-size: 34px;
    }

    .services-area-cta__card h3 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .services-area-cta {
        padding: 24px 0 56px;
    }

    .services-area-cta__areas,
    .services-area-cta__card {
        padding: 22px;
        border-radius: 10px;
    }

    .services-area-cta .sec-title__title {
        font-size: 28px;
    }

    .services-area-cta__areas p,
    .services-area-cta__card p {
        font-size: 16px;
    }

    .services-area-cta__chips span {
        flex: 1 1 calc(50% - 10px);
    }

    .services-area-cta__card h3 {
        font-size: 26px;
    }
}

.verification-process {
    position: relative;
    padding: 70px 0 90px;
    background: #fbfcf6;
    overflow: hidden;
}

.verification-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 16%, rgba(0, 87, 168, 0.07), transparent 26%),
        radial-gradient(circle at 86% 86%, rgba(39, 199, 103, 0.09), transparent 30%);
    pointer-events: none;
}

.verification-process .container {
    position: relative;
    z-index: 1;
}

.verification-process__heading {
    max-width: 820px;
    margin: 0 auto 44px;
}

.verification-process__heading h2 {
    margin: 14px 0 0;
    color: #062b47;
    font-size: 56px;
    line-height: 1.08em;
    font-weight: 900;
}

.verification-process__card {
    position: relative;
    height: 100%;
    min-height: 330px;
    padding: 34px 26px 28px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 87, 168, 0.12);
    box-shadow: 0 18px 48px rgba(0, 43, 78, 0.08);
    overflow: hidden;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.verification-process__card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, #0057a8, #27c767);
}

.verification-process__card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 87, 168, 0.24);
    box-shadow: 0 24px 64px rgba(0, 43, 78, 0.13);
}

.verification-process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 50%;
    color: #ffffff;
    background: #0057a8;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(0, 87, 168, 0.24);
}

.verification-process__card h3 {
    margin: 0 0 14px;
    color: #062b47;
    font-size: 17px;
    line-height: 1.22em;
    font-weight: 900;
}

.verification-process__card p {
    margin: 0;
    color: #5d6872;
    font-size: 16px;
    line-height: 1.62em;
}

@media (max-width: 1199px) {
    .verification-process__heading h2 {
        font-size: 46px;
    }

    .verification-process__card {
        min-height: 310px;
    }
}

@media (max-width: 767px) {
    .verification-process {
        padding: 52px 0 66px;
    }

    .verification-process__heading {
        margin-bottom: 30px;
    }

    .verification-process__heading h2 {
        font-size: 36px;
    }

    .verification-process__card {
        min-height: auto;
        padding: 28px 22px;
    }
}

@media (max-width: 575px) {
    .verification-process {
        padding: 42px 0 54px;
    }

    .verification-process__heading h2 {
        font-size: 31px;
    }

    .verification-process__card h3 {
        font-size: 21px;
    }

    .verification-process__card p {
        font-size: 15px;
    }
}

.verification-pricing {
    position: relative;
    padding: 78px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
    overflow: hidden;
}

.verification-pricing::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(0, 87, 168, 0.08), transparent 28%),
        radial-gradient(circle at 82% 70%, rgba(39, 199, 103, 0.1), transparent 30%);
    pointer-events: none;
}

.verification-pricing .container {
    position: relative;
    z-index: 1;
}

.verification-pricing__heading {
    max-width: 860px;
    margin: 0 auto 42px;
}

.verification-pricing__heading h2 {
    margin: 14px 0 0;
    color: #062b47;
    font-size: 48px;
    line-height: 1.12em;
    font-weight: 900;
}

.verification-pricing__card {
    position: relative;
    height: 100%;
    min-height: 315px;
    padding: 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 87, 168, 0.12);
    box-shadow: 0 18px 48px rgba(0, 43, 78, 0.1);
    transform-style: preserve-3d;
    transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
    overflow: hidden;
}

.verification-pricing__card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 87, 168, 0.52), rgba(39, 199, 103, 0.52));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 360ms ease;
    pointer-events: none;
}

.verification-pricing__card:hover {
    transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-8px);
    border-color: rgba(0, 87, 168, 0.24);
    box-shadow: 0 30px 78px rgba(0, 43, 78, 0.18);
}

.verification-pricing__card:hover::before {
    opacity: 1;
}

.verification-pricing__card--featured {
    background: linear-gradient(145deg, #062b47, #0057a8);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 68px rgba(0, 87, 168, 0.22);
}

.verification-pricing__top span,
.verification-pricing__note span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #0057a8;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.verification-pricing__card--featured .verification-pricing__top span,
.verification-pricing__card--featured .verification-pricing__note span {
    color: #89d7ff;
}

.verification-pricing__top h3 {
    min-height: 86px;
    margin: 0 0 22px;
    color: #062b47;
    font-size: 23px;
    line-height: 1.24em;
    font-weight: 900;
}

.verification-pricing__card--featured .verification-pricing__top h3 {
    color: #ffffff;
}

.verification-pricing__price {
    display: flex;
    align-items: center;
    min-height: 64px;
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 10px;
    color: #ffffff;
    background: #0057a8;
    font-size: 22px;
    line-height: 1.25em;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 87, 168, 0.2);
}

.verification-pricing__card--featured .verification-pricing__price {
    color: #062b47;
    background: #ffffff;
}

.verification-pricing__note {
    padding-top: 18px;
    border-top: 1px solid rgba(0, 87, 168, 0.12);
}

.verification-pricing__card--featured .verification-pricing__note {
    border-top-color: rgba(255, 255, 255, 0.18);
}

.verification-pricing__note p {
    margin: 0;
    color: #5d6872;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 700;
}

.verification-pricing__card--featured .verification-pricing__note p {
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1199px) {
    .verification-pricing__heading h2 {
        font-size: 42px;
    }

    .verification-pricing__card {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .verification-pricing {
        padding: 56px 0 66px;
    }

    .verification-pricing__heading {
        margin-bottom: 30px;
    }

    .verification-pricing__heading h2 {
        font-size: 34px;
    }

    .verification-pricing__card {
        min-height: auto;
        padding: 24px;
    }

    .verification-pricing__top h3 {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .verification-pricing {
        padding: 44px 0 54px;
    }

    .verification-pricing__heading h2 {
        font-size: 29px;
    }

    .verification-pricing__top h3 {
        font-size: 21px;
    }

    .verification-pricing__price {
        font-size: 19px;
    }
}

/* Verification pricing - clean professional card style */
.verification-pricing {
    padding: 64px 0 78px;
    background: #f7fafc;
}

.verification-pricing::before {
    background: linear-gradient(180deg, rgba(0, 87, 168, 0.03), rgba(39, 199, 103, 0.04));
}

.verification-pricing__heading {
    margin-bottom: 34px;
}

.verification-pricing__heading h2 {
    color: #062b47;
    font-size: 38px;
    line-height: 1.18em;
    font-weight: 800;
}

.verification-pricing__card,
.verification-pricing__card--featured {
    min-height: 278px;
    padding: 26px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 74, 148, 0.14);
    box-shadow: 0 14px 34px rgba(0, 43, 78, 0.07);
    transform: none;
}

.verification-pricing__card::before,
.verification-pricing__card--featured::before {
    inset: auto 0 0 0;
    height: 4px;
    padding: 0;
    border-radius: 0;
    background: linear-gradient(90deg, #0057a8, #27c767);
    -webkit-mask: none;
    mask: none;
    opacity: 1;
}

.verification-pricing__card:hover,
.verification-pricing__card--featured:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 74, 148, 0.22);
    box-shadow: 0 18px 42px rgba(0, 43, 78, 0.1);
}

.verification-pricing__top span,
.verification-pricing__note span,
.verification-pricing__card--featured .verification-pricing__top span,
.verification-pricing__card--featured .verification-pricing__note span {
    margin-bottom: 8px;
    color: #0057a8;
    font-size: 12px;
    letter-spacing: 0;
}

.verification-pricing__top h3,
.verification-pricing__card--featured .verification-pricing__top h3 {
    min-height: 68px;
    margin-bottom: 18px;
    color: #062b47;
    font-size: 20px;
    line-height: 1.28em;
    font-weight: 800;
}

.verification-pricing__price,
.verification-pricing__card--featured .verification-pricing__price {
    min-height: 54px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #062b47;
    background: #edf5fb;
    border: 1px solid rgba(0, 87, 168, 0.12);
    box-shadow: none;
    font-size: 19px;
    line-height: 1.25em;
    font-weight: 800;
}

.verification-pricing__note,
.verification-pricing__card--featured .verification-pricing__note {
    padding-top: 16px;
    border-top: 1px solid rgba(0, 74, 148, 0.1);
}

.verification-pricing__note p,
.verification-pricing__card--featured .verification-pricing__note p {
    color: #5d6872;
    font-size: 15px;
    line-height: 1.45em;
    font-weight: 600;
}

.verification-pricing__note-box {
    margin-top: 28px;
    padding: 18px 22px;
    border-radius: 10px;
    color: #5d6872;
    background: #ffffff;
    border: 1px solid rgba(0, 74, 148, 0.14);
    border-left: 4px solid #0057a8;
    box-shadow: 0 12px 30px rgba(0, 43, 78, 0.06);
    font-size: 16px;
    line-height: 1.65em;
}

.verification-pricing__note-box strong {
    color: #062b47;
    font-weight: 900;
}

@media (max-width: 1199px) {
    .verification-pricing__card,
    .verification-pricing__card--featured {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .verification-pricing {
        padding: 48px 0 58px;
    }

    .verification-pricing__heading h2 {
        font-size: 31px;
    }

    .verification-pricing__top h3,
    .verification-pricing__card--featured .verification-pricing__top h3 {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .verification-pricing {
        padding: 40px 0 50px;
    }

    .verification-pricing__heading h2 {
        font-size: 27px;
    }

    .verification-pricing__card,
    .verification-pricing__card--featured {
        padding: 22px;
    }

    .verification-pricing__note-box {
        padding: 16px 18px;
        font-size: 15px;
    }
}

/*==============================================
 Candidate Registration
===============================================*/
.candidate-registration {
    position: relative;
    padding: 70px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.candidate-registration__heading {
    max-width: 820px;
    margin: 0 auto 40px;
}

.candidate-registration__heading h2 {
    margin: 14px 0 16px;
    color: #062b47;
    font-size: 42px;
    line-height: 1.18em;
    font-weight: 800;
}

.candidate-registration__heading > p {
    color: #5d6872;
    font-size: 16px;
    line-height: 1.6em;
    margin: 0;
}

.candidate-registration__table-wrap {
    margin-bottom: 28px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 43, 78, 0.07);
}

.candidate-registration__table {
    margin-bottom: 0;
}

.candidate-registration__table thead th {
    background: #062b47;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    padding: 16px 20px;
}

.candidate-registration__table tbody td {
    padding: 16px 20px;
    color: #5d6872;
    font-size: 16px;
    font-weight: 600;
    vertical-align: middle;
    border-color: rgba(0, 74, 148, 0.1);
}

.candidate-registration__table tbody tr:nth-child(odd) {
    background: #f7fafc;
}

.candidate-registration__text {
    color: #5d6872;
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 14px;
}

.candidate-registration__disclaimer {
    color: #8a93a6;
    font-size: 14px;
    font-style: italic;
    line-height: 1.7em;
    margin-bottom: 0;
}

.candidate-registration__info-row {
    margin-top: 40px;
}

.candidate-registration__info-card {
    height: 100%;
    padding: 28px;
    border-radius: 10px;
    background: #f7fafc;
    border: 1px solid rgba(0, 74, 148, 0.12);
    border-top: 4px solid #0057a8;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.candidate-registration__info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 43, 78, 0.1);
}

.candidate-registration__info-card h3 {
    margin: 0 0 14px;
    color: #062b47;
    font-size: 20px;
    font-weight: 800;
}

.candidate-registration__info-card p {
    color: #5d6872;
    font-size: 15px;
    line-height: 1.65em;
    margin-bottom: 10px;
}

.candidate-registration__info-card p:last-child {
    margin-bottom: 0;
}

.candidate-registration__info-card ul {
    margin: 0;
    padding-left: 20px;
}

.candidate-registration__info-card ul li {
    position: relative;
    color: #5d6872;
    font-size: 15px;
    line-height: 1.6em;
    margin-bottom: 10px;
}

.candidate-registration__info-card ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .candidate-registration__heading h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .candidate-registration {
        padding: 50px 0 60px;
    }

    .candidate-registration__heading h2 {
        font-size: 30px;
    }

    .candidate-registration__table thead th,
    .candidate-registration__table tbody td {
        padding: 12px 14px;
        font-size: 14px;
    }

    .candidate-registration__info-row {
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .candidate-registration__heading h2 {
        font-size: 26px;
    }
}

/*==============================================
 Verification Support Details
===============================================*/
.verification-support {
    position: relative;
    padding: 70px 0 90px;
    background: #f7fafc;
    overflow: hidden;
}

.verification-support__heading {
    max-width: 820px;
    margin: 0 auto 40px;
}

.verification-support__heading h2 {
    margin: 14px 0 0;
    color: #062b47;
    font-size: 42px;
    line-height: 1.18em;
    font-weight: 800;
}

.verification-support__card {
    height: 100%;
    padding: 28px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 74, 148, 0.12);
    border-left: 4px solid #0057a8;
    box-shadow: 0 14px 34px rgba(0, 43, 78, 0.06);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.verification-support__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 43, 78, 0.1);
}

.verification-support__card h3 {
    margin: 0 0 12px;
    color: #062b47;
    font-size: 19px;
    font-weight: 800;
}

.verification-support__card p {
    margin: 0;
    color: #5d6872;
    font-size: 15px;
    line-height: 1.65em;
}

.verification-support__card p + p {
    margin-top: 12px;
}

.verification-support__disclaimer {
    margin: 36px 0 0;
    color: #8a93a6;
    font-size: 14px;
    font-style: italic;
    line-height: 1.7em;
}

@media (max-width: 1199px) {
    .verification-support__heading h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .verification-support {
        padding: 50px 0 60px;
    }

    .verification-support__heading h2 {
        font-size: 30px;
    }

    .verification-support__card {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .verification-support__heading h2 {
        font-size: 26px;
    }
}

/*==============================================
 Family Requirement Registration Form
===============================================*/
.requirement-form {
    position: relative;
    padding: 70px 0 90px;
    background: #f7fafc;
}

.requirement-form__heading {
    max-width: 820px;
    margin: 0 auto 40px;
}

.requirement-form__heading h2 {
    margin: 14px 0 16px;
    color: #062b47;
    font-size: 42px;
    line-height: 1.18em;
    font-weight: 800;
}

.requirement-form__heading p {
    color: #5d6872;
    font-size: 16px;
    line-height: 1.6em;
    margin: 0;
}

.requirement-form__card {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    border-top: 6px solid #0057a8;
    box-shadow: 0 14px 44px rgba(0, 43, 78, 0.08);
    padding: 45px;
}

.requirement-form__group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 87, 168, 0.12);
    color: #0057a8;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.requirement-form__group-title span:first-child::before {
    font-size: 18px;
    color: #0057a8;
}

.requirement-form__group .form-label {
    display: block;
    margin-bottom: 8px;
    color: #062b47;
    font-size: 15px;
    font-weight: 700;
}

.requirement-form__required {
    color: #e84c4c;
}

.requirement-form__group .form-control,
.requirement-form__group .form-select {
    width: 100%;
    border: 1px solid rgba(0, 74, 148, 0.15);
    border-radius: 6px;
    background: #f7fafc;
    color: #062b47;
    font-size: 15px;
    padding: 12px 16px;
    transition: border-color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

.requirement-form__group .form-control:focus,
.requirement-form__group .form-select:focus {
    border-color: #0057a8;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 87, 168, 0.12);
    outline: none;
}

.requirement-form__group textarea.form-control {
    resize: vertical;
}

.requirement-form__group .form-select {
    cursor: pointer;
}

.requirement-form__options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.requirement-form__option {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 180px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 74, 148, 0.15);
    border-radius: 6px;
    background: #f7fafc;
    color: #062b47;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    transition: border-color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

.requirement-form__option:hover {
    border-color: #0057a8;
    background: #ffffff;
}

.requirement-form__option:has(input:checked) {
    border-color: #0057a8;
    background: rgba(0, 87, 168, 0.06);
    box-shadow: 0 6px 18px rgba(0, 87, 168, 0.1);
}

.requirement-form__option input {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: #0057a8;
    flex-shrink: 0;
}

.requirement-form__options--inline {
    max-width: 480px;
}

.requirement-form__plans {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.requirement-form__plan {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 240px;
    padding: 18px 22px;
    border: 1px solid rgba(0, 74, 148, 0.15);
    border-radius: 8px;
    background: #f7fafc;
    margin: 0;
    cursor: pointer;
    transition: border-color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

.requirement-form__plan:hover {
    border-color: #0057a8;
    background: #ffffff;
}

.requirement-form__plan:has(input:checked) {
    border-color: #0057a8;
    background: rgba(0, 87, 168, 0.06);
    box-shadow: 0 6px 18px rgba(0, 87, 168, 0.1);
}

.requirement-form__plan input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #0057a8;
    flex-shrink: 0;
}

.requirement-form__plan-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.requirement-form__plan-name {
    color: #062b47;
    font-size: 16px;
    font-weight: 800;
}

.requirement-form__plan-price {
    color: #0057a8;
    font-size: 14px;
    font-weight: 700;
}

.requirement-form__disclaimer {
    margin: 0;
    padding: 14px 18px;
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 8px;
    background: #fff8e6;
    color: #8a6d1d;
    font-size: 14px;
    line-height: 1.6em;
}

.requirement-form__info-box {
    margin: 0;
    padding: 14px 18px;
    border: 1px solid rgba(39, 199, 103, 0.3);
    border-left: 4px solid #27c767;
    border-radius: 8px;
    background: #f1faf4;
    color: #062b47;
    font-size: 15px;
    line-height: 1.6em;
}

.requirement-form__info-box p {
    margin: 0;
}

.requirement-form__info-box p+p {
    margin-top: 6px;
}

.requirement-form__info-box strong {
    color: #0d8a3e;
}

.requirement-form .thm-btn {
    padding: 0px 45px;
}

@media (max-width: 1199px) {
    .requirement-form__heading h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .requirement-form {
        padding: 50px 0 60px;
    }

    .requirement-form__heading h2 {
        font-size: 30px;
    }

    .requirement-form__card {
        padding: 30px 20px;
    }

    .requirement-form__option {
        flex: 1 1 140px;
    }
}

@media (max-width: 575px) {
    .requirement-form__heading h2 {
        font-size: 26px;
    }

    .requirement-form__card {
        padding: 24px 16px;
    }

    .requirement-form__option {
        flex: 1 1 100%;
    }

    .requirement-form__plan {
        flex: 1 1 100%;
    }
}

/*==============================================
 Worker Categories
===============================================*/
.worker-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 36px 0 28px;
}

.worker-categories__item {
    flex: 1 1 160px;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 74, 148, 0.12);
    border-top: 3px solid #0057a8;
    background: #ffffff;
    color: #062b47;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.worker-categories__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 43, 78, 0.08);
}

@media (max-width: 575px) {
    .worker-categories__item {
        flex: 1 1 calc(50% - 7px);
    }
}

/*==============================================
 Contact FAQ
===============================================*/
.contact-faq {
    position: relative;
    display: block;
    background: #f7fafc;
    padding: 100px 0;
    z-index: 1;
}

.contact-faq__heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact-faq__heading h2 {
    color: #062b47;
    font-size: 38px;
    line-height: 48px;
    font-weight: 700;
    margin: 14px 0 12px;
}

.contact-faq__heading p {
    color: #5d6872;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

.contact-faq__list {
    max-width: 860px;
    margin: 0 auto;
}

.contact-faq__list .accrodion {
    background: #ffffff;
    border: 1px solid rgba(0, 74, 148, 0.12);
    border-radius: 8px;
    padding: 0px 30px;
    transition: border-color 300ms ease, box-shadow 300ms ease;
}

.contact-faq__list .accrodion+.accrodion {
    margin-top: 14px;
}

.contact-faq__list .accrodion.active {
    padding-bottom: 22px;
    border-color: #0057a8;
    box-shadow: 0 12px 30px rgba(0, 43, 78, 0.06);
}

.contact-faq__list .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 22px 0px;
}

.contact-faq__list .accrodion-title h4 {
    position: relative;
    color: #062b47;
    font-size: 17px;
    font-weight: 700;
    line-height: 26px;
    margin: 0;
    padding-right: 30px;
    transition: color 300ms ease;
}

.contact-faq__list .accrodion.active .accrodion-title h4 {
    color: #0057a8;
}

.contact-faq__list .accrodion-title h4::before {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    color: #0057a8;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    font-family: 'icomoon' !important;
    content: "\e938";
    transition: all 300ms ease;
}

.contact-faq__list .accrodion.active .accrodion-title h4::before {
    content: "\e939";
}

.contact-faq__list .accrodion-content .inner p {
    margin: 0;
    color: #5d6872;
    font-size: 15px;
    line-height: 26px;
    padding-bottom: 4px;
}

.contact-faq__disclaimer {
    max-width: 860px;
    margin: 36px auto 0;
}

.contact-faq__footer-note {
    margin: 18px 0 0;
    color: #8a93a6;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 575px) {
    .contact-faq {
        padding: 70px 0;
    }

    .contact-faq__heading h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .contact-faq__list .accrodion {
        padding: 0px 18px;
    }
}
