@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

html {
    scroll-behavior: smooth;
}

:root {
    --pine-teal: #004638;
    --cayenne: #E95B18;
    --lemon-lime: #C9D302;
    --cornsilk: #FCF7E1;
    --white: #FFFFFF;
    --black: #000000;
    --muted: #f4f7fb;
    --accent: var(--cayenne);
    --max-width: 1200px;
    --primary-font: "Inter", sans-serif;
    --secondary-font: "Lato", sans-serif;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: var(--pine-teal);
}

body {
    font-family: var(--secondary-font);
    overflow-x: hidden;
    font-weight: 400;
    line-height: 27px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--primary-font);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.common-btn {
    padding: 10px 20px;
    background: var(--pine-teal);
    color: var(--white);
    border-radius: 6px;
}

.common-btn:hover {
    background: var(--cayenne);
    color: var(--white);
}

.common-title h1 {
    font-size: 54px !important;
    line-height: 1.2em !important;
    font-weight: 700;
}

.comman-title h2 {
    font-family: var(--primary-font);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--black);
}

.comman-title h2 span {
    color: var(--pine-teal);
}

.comman-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3em;
    color: var(--black);
}

.btn {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 600 !important;
    line-height: 1.5em !important;
    border: none !important;
    outline: none !important;
    padding: 14px 30px;
    background: #004638;
    color: #fff !important;
    border-radius: 30px;
    transition: all 0.3s ease-in-out !important;
    cursor: pointer;
    display: inline-block;
}

.btn:hover {
    background: var(--lemon-lime);
    color: var(--pine-teal) !important;
}

/* ------ header ------ */

header {
    width: 100%;
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

header .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #nav-icon {
    width: 32px;
    height: 22px;
    position: relative;
    margin: 0px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}

header #nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #d3531a;
    border-radius: 5px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

header #nav-icon span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
}

header #nav-icon span:nth-child(2) {
    top: 10px;
    transform-origin: left center;
}

header #nav-icon span:nth-child(3) {
    top: 20px;
    transform-origin: left center;
}

header #nav-icon.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 4px;
}

header #nav-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

header #nav-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 22px;
    left: 4px;
}

header .logo_div img {
    width: 150px;
}

header nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
}

/* ----- Banner Section ----- */


/* ------- Privacy page -------- */

.stacked-card-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s ease;
}

.stacked-card-item.front {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stacked-card-item.mid {
    opacity: 0.8;
    transform: translateY(10px) scale(0.95);
}

.stacked-card-item.back {
    opacity: 0.5;
    transform: translateY(20px) scale(0.9);
}

.stacked-card-item.hidden {
    opacity: 0;
}


.banner_img img {
    display: none;
    opacity: 0;
    transition: opacity .5s ease;
}

.banner_img img.active {
    display: block;
    opacity: 1;
}

.hero_row {
    display: flex;
    gap: 15px;
}

.banner_img {
    width: 100%;
    max-width: 400px;
}

.banner_img img.app_img {
    width: 100%;
    object-fit: contain !important;
    height: 480px !important;
    border-radius: 12px;
}

.hero_section {
    padding-top: 110px;
    padding-bottom: 90px;
}

.hero_section .waitlist-form {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    max-width: 450px;
}

.hero_section .waitlist-form input {
    padding: 20px 200px 20px 25px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    outline: none !important;
    font-size: 16px;
}

.hero_section button#join-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 5px;
}

.hero_section .hero_content {
    width: 100%;
    position: relative;
}

.hero_section .hero_img {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(0px);
}

.hero_section .hero_img img {
    width: 280px;
}

.hero_section .stacked-cards {
    position: relative;
    height: 190px;
}

.hero_section .stacked-card-item {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease, transform 1s ease;
    width: fit-content !important;
}

.hero_section .stacked-card-item h1 {
    max-width: 650px;
}

.hero_section .stacked-card-item.front {
    opacity: 1;
    transform: translateY(0);
    background: var(--cornsilk);
    color: var(--cayenne);
    position: relative;
    z-index: 99;
    padding: 16px 25px;
    border-radius: 10px;
}

.hero_section .stacked-card-item.mid {
    opacity: 1;
    transform: translate(50px, 28px);
    background: var(--muted);
    color: var(--pine-teal);
    padding: 15px 25px;
    border-radius: 10px;
    z-index: 9;
}

.hero_section .stacked-card-item.mid h1 {
    opacity: 0.2;
}

.hero_section .stacked-card-item.back {
    opacity: 0.1;
    transform: translate(100px, 48px);
    color: var(--pine-teal);
    padding: 10px 25px 0px;
    border-radius: 10px;
}

.hero_section .stacked-card-item.hidden {
    opacity: 0;
    transform: translateY(50px);
}

.hero_section .hero_content p {
    max-width: 60%;
    font-size: 18px;
    margin: 30px 0px;
}

/* ------ problem Section Start ------ */

.problem_section {
    width: 100%;
    background-color: var(--muted);
    padding-top: 80px;
    padding-bottom: 80px;
}

.problem_section .problem_main {
    width: 100%;
}

.problem_section .problem_main .left_col p {
    padding-top: 10px;
    line-height: 1.4em !important;
}

.problem_section .slider_div .item {
    background: var(--cornsilk);
}

.problem_section .left_col .comman-text {
    max-width: 500px;
}

.problem_section .problem_slider_div .item {
    background: #f4f4f4;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100% !important;
}

.problem_section .problem_slider_div .item h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--cayenne);
}

.problem_section .problem_slider_div {
    padding-top: 30px;
}

.problem_section .problem_slider_div .owl-nav {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 20px !important;
}

.problem_section .problem_slider_div .owl-nav .owl-prev,
.problem_section .problem_slider_div .owl-nav .owl-next {
    width: 42px;
    height: 42px;
    background: var(--cayenne) !important;
    color: #fff !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 24px;
}

.problem_section .owl-stage {
    display: flex;
}

/* ------ problem Section End ------ */

/* ------ why_use Section Start ------ */

.why_use_section {
    width: 100%;
    background-color: var(--white);
    padding-top: 80px;
    padding-bottom: 80px;
}

.why_use_section .hedding {
    width: 100%;
    text-align: center;
}

.why_use_section .comman-text p {
    max-width: 800px;
    margin: auto;
    padding-top: 20px;
}

.why_use_section .blurb_arae {
    width: 100%;
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.why_use_section .burb_box {
    width: 33.33%;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
}

.why_use_section .burb_box .content {
    background-color: #004638;
    text-align: center;
    padding: 20px 10px;
}

.why_use_section .remove_bg {
    background-color: var(--white);
    border: 1px solid #004638;
}

.why_use_section .remove_bg h4,
.why_use_section .remove_bg p {
    color: var(--black) !important;
}

.why_use_section .burb_box h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2em;
    padding-bottom: 10px;
    text-transform: capitalize;
}

.why_use_section .burb_box p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2em;
    max-width: 280px;
    margin: auto;
}

/* ------ why_use Section End ------ */

/* ------ how its work css start ------ */

.how-it-works {
    padding: 80px 0;
    background-color: var(--cornsilk);
}

.how-it-works .how_works_container {
    align-items: flex-start !important;
    display: flex;
    gap: 40px;
    position: relative;
}

.how-it-works .left_col.comman-title {
    position: sticky;
    top: 50px;
    width: 40%;
}

.how-it-works .left_col.comman-title h2 {
    max-width: 460px;
    margin-bottom: 10px;
}

.how-it-works .left_col p {
    margin-bottom: 20px;
    max-width: 352px !important;
}

.how-it-works .right_col {
    display: flex;
    gap: 40px;
    width: 60%;
}

.how-it-works .timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    width: auto;
    min-width: fit-content;
    margin: 30px 0;
}

.how-it-works .line {
    width: 2px;
    background: #0000001a;
    height: 100%;
    position: absolute;
    top: 0;
}

.how-it-works .scroll-line {
    width: 2px;
    background: #000;
    height: 0;
    position: absolute;
    top: 0;
    transition: height 0.2s linear;
}

.how-it-works .step {
    width: 40px;
    height: 40px;
    background: var(--lemon-lime);
    border: 2px solid var(--lemon-lime);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    position: relative;
    z-index: 5;
    transition: 0.3s;
}

.how-it-works .step.active {
    background: var(--cayenne);
    border-color: var(--cayenne) !important;
    color: var(--white);
    opacity: 1;
}

.how-it-works .step.step_one {
    margin-top: 0;
}

.how-it-works .step:last-child {
    margin-bottom: 0;
}

.how-it-works .cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.how-it-works .cards .card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    opacity: 0.5;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.how-it-works .card img {
    width: 50px;
    height: 50px;
}

.how-it-works .card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    max-width: 80%;
}

.how-it-works .cards .card.active {
    opacity: 1;
    transform: translateX(0);
}

.how-it-works .cards .card_one {
    margin-top: 0;
}

/* ----- who we are ----- */

.who-we-are {
    padding: 80px 0;
}

.who-we-are .who-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.who-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.who-we-are .who-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 15px;
    display: block;

}

.who-we-are .who-content.comman-title h2 {
    margin-bottom: 10px;
}

.who-we-are .who-content p {
    font-size: 16px;
    line-height: 1.6em;
}

/* contact-section css start */

.contact-section {
    padding: 80px 15px;
    display: flex;
    justify-content: center;
    background-image: url(../images/contact_sec.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.contact-section::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}

.contact-section .contact-container {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-section .contact-container h2 {
    text-align: center;
    margin-bottom: 14px;
}

.contact-section .contact-form .form-group {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.contact-section .contact-form label {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 14px;
}

.contact-section .contact-form input,
.contact-section .contact-form textarea {
    width: auto;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
    font-family: var(--primary-font);
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
    border-color: #007bff;
}

.contact-section .contact-form textarea {
    min-height: 120px;
    resize: none;
}

/* ----- Faq_section Start ----- */

.faq_section {
    background-color: var(--cornsilk);
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
}

.faq_section .comman-title h2 {
    text-align: center;
}

.faq_section .accordion {
    padding-top: 30px;
    width: 70%;
    margin: auto;
}

.faq_section .accordion-item {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 0px 3px 0px #ebebeb;
}

.faq_section .accordion-header {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    background: var(--white);
    transition: 0.3s;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.faq_section .accordion-header:not(.collapsed) {
    background: var(--white);
}

.faq_section .accordion-header.active {
    background: var(--pine-teal);
    color: var(--white);
}

.faq_section .accordion-header.active .arrow {
    filter: invert(1);
}

.faq_section .accordion-header:hover {
    background: var(--pine-teal);
    color: #fff;
}

.faq_section .accordion-header:hover .arrow {
    filter: invert(1) !important;
}

.faq_section .accordion-content {
    padding: 0 20px;
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
    background: #fff;
}

.faq_section .accordion-content p {
    margin: 15px 0;
}

.faq_section .arrow {
    transition: transform .3s ease;
    background: url('../images/down-arrow.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 30px;
    height: 30px;
    display: block;
}

.faq_section .accordion-item.active .arrow {
    transform: rotate(180deg);
}

/* ----- Faq_section End ----- */

/* ----- confidence_section Start ----- */

.confidence_section {
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
    background-repeat: no-repeat !important;
    background-position: 100% !important;
    background-size: cover !important;
    position: relative;
}

.confidence_section:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000bf;
}

.confidence_section .hedding {
    position: relative;
}

.confidence_section .comman-title h2 {
    color: var(--white);
    text-align: center;
}

.confidence_section .comman-text p {
    color: var(--white);
    text-align: center;
    padding-top: 30px;
    max-width: 550px;
    margin: auto;
}

.confidence_section .confiidence_btn {
    width: 100%;
    justify-content: center;
    display: flex;
    margin-top: 30px;
}

/* ----- confidence_section End ----- */

/* ----- footer_section Start ----- */

.footer_section {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: var(--pine-teal);
}

.footer_section .footer-top,
.footer_section .footer-bottom {
    width: 100%;
    text-align: center;
}

.footer_section .footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr !important;
    margin-top: 10px;
}

.footer_section .footer-bottom-left {
    text-align: start;
    color: var(--white);
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer_section .footer-bottom-left a,
.footer_section .footer-bottom-middle a {
    color: var(--white);
}

.footer_section .footer-bottom-left a:hover,
.footer_section .footer-bottom-middle a:hover {
    color: var(--lemon-lime);
}

.footer_section .footer-top h4 {
    font-size: 26px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.2em;
}

.footer_section .footer-bottom-middle {
    text-align: center;
    color: var(--white);

}

.footer-bottom-middle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom-right {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.footer-bottom-right .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-bottom-right .social-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer-bottom-right .social-icon:hover {
    background: var(--lemon-lime);
    transform: translateY(-3px);

}

.footer-bottom-right .social-icon:hover img {
    filter: invert(1);
}



/* ------ privacy policy page ------ */

.inner_banner_section {
    background-color: var(--cornsilk);
    padding: 50px 0px;
}

.inner_banner_section h1 {
    padding-bottom: 8px;
    line-height: 1.3em;
    font-weight: 800;
}

.privacy_section {
    padding-top: 60px;
    padding-bottom: 40px;
}

.privacy_section h2 {
    font-size: 26px;
    color: var(--pine-teal);
    font-weight: 800;
    padding-bottom: 30px;
    text-decoration: underline;
    text-underline-offset: 10px;
}

.privacy_section h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em !important;
    padding-bottom: 10px;
}

.privacy_section h4 {
    font-size: 16px !important;
    padding-bottom: 10px;
    font-weight: 600;
    line-height: 1.5em !important;
}

.privacy_section p {
    padding-bottom: 25px;
}

.privacy_section ul {
    margin-left: 35px;
    margin-bottom: 15px;
}

.privacy_section ul li {
    padding-bottom: 5px;
}

.privacy_section ul li::marker {
    color: var(--cayenne);
}



/* ----- footer_section End ----- */

/* ----- Media query start ----- */

@media screen and (max-width: 1200px) {
    .hero_section .hero_img {
        display: none;
    }

    .hero_section .stacked-card-item h1 {
        max-width: 560px;
    }
}

@media screen and (max-width:1100px) {
    .hero_section .stacked-card-item h1 {
        max-width: 100%;
    }

    .hero_row {
        gap: 30px !important;
        flex-direction: row-reverse;
    }
}

@media screen and (max-width: 990px) {

    header #nav-icon {
        display: block;
    }

    header .menu-icon {
        display: block;
    }

    header nav {
        position: absolute;
        right: 0;
        top: 80px;
        width: 100%;
        background: #fff;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    }

    header nav.open {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
    }

    header nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .common-title h1 {
        font-size: 42px !important;
    }

    .comman-title h2 {
        font-size: 32px;
    }

    .hero_section .stacked-cards {
        height: 170px;
    }

    .problem_section {
        padding: 50px 0;
    }

    .why_use_section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .why_use_section .blurb_arae {
        gap: 15px;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .how-it-works {
        padding: 50px 0;
    }

    .how-it-works .how_works_container {
        gap: 30px;
    }

    .how-it-works .cards {
        gap: 20px;
    }

    .how-it-works .timeline {
        margin: 45px 0;
    }

    .who-we-are {
        padding: 50px 0;
    }

    .who-we-are .who-container {
        gap: 15px;
    }

    .contact-section {
        padding: 50px 20px;
    }

    .faq_section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .confidence_section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .footer_section .footer-bottom {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .footer-bottom-left {
        order: 3;
    }

    .footer-bottom-right {
        justify-content: center;
    }

    .footer_section .footer-bottom-left {
        justify-content: center;
    }

    .footer-bottom-right .social-icon {
        width: 32px;
        height: 32px;
    }

    .footer-bottom-right .social-icon img {
        width: 18px;
        height: 18px;
    }

    .who-we-are .who-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why_use_section .burb_box {
        width: 45% !important;
    }
}

@media screen and (max-width: 767px) {

    .hero_row {
        gap: 15px !important;
        flex-direction: column-reverse;
    }

    .banner_img {
        max-width: 100% !important;
    }

    .banner_img img.app_img {
        height: 350px !important;
    }

    .hero_section {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .faq_section .accordion {
        padding-top: 20px;
        width: 100%;
    }

    .contact-section .contact-container {
        max-width: 100%;
        padding: 22px;
    }

    .common-title h1 {
        font-size: 28px !important;
    }

    .comman-title h2 {
        font-size: 26px;
    }

    .hero_section .hero_content p {
        max-width: 100%;
        font-size: 16px;
        margin: 15px 0px;
    }

    .hero_section .stacked-card-item.front {
        padding: 8px 15px;
    }

    .hero_section .stacked-card-item.mid {
        transform: translate(15px, 50px);
        padding: 8px 15px;
    }

    .hero_section .stacked-card-item.back {
        transform: translate(20px, 20px);
        padding: 10px 15px 0px;
    }

    .hero_section .stacked-cards {
        height: 130px;
    }

    .problem_section .problem_slider_div {
        padding-top: 20px;
    }

    .why_use_section .comman-text p {
        padding-top: 10px;
    }

    .why_use_section .blurb_arae {
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .why_use_section .burb_box {
        width: 100% !important;
        height: 300px;
    }

    .why_use_section .burb_box h4 {
        font-size: 20px;
        padding-bottom: 8px;
    }

    .how-it-works .how_works_container {
        flex-wrap: wrap;
    }

    .how-it-works .left_col.comman-title {
        position: relative;
        top: 0px !important;
        width: 100%;
    }

    .how-it-works .right_col {
        gap: 20px;
        width: 100%;
    }

    .how-it-works .left_col p {
        margin-bottom: 15px;
    }

    .how-it-works .cards .card {
        padding: 20px;
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .how-it-works .card img {
        width: 40px;
        height: 40px;
    }

    .how-it-works .card h3 {
        font-size: 16px;
        max-width: 100%;
    }

    .who-we-are .who-image img {
        height: 260px;
    }

    .contact-section .contact-container h2 {
        margin-bottom: 10px;
    }

    .faq_section .accordion-header {
        padding: 12px 15px;
        font-size: 16px;
        line-height: 1.4em;
    }

    .faq_section .arrow {
        width: 15px;
        height: 20px;
    }

    .confidence_section .comman-text p {
        padding-top: 16px;
    }

    .confidence_section .confiidence_btn {
        margin-top: 20px;
    }

    .footer_section .footer-top h4 {
        font-size: 22px;
    }

    .faq_section .accordion-content {
        padding: 0 15px;
    }

    .hero_section button#join-btn {
        padding: 14px 18px !important;
    }

    .hero_section .waitlist-form input {
        padding: 20px 170px 20px 25px;
    }

    .inner_banner_section {
        padding: 40px 0px;
    }

    .inner_banner_section h1 {
        font-size: 24px;
    }

    .inner_banner_section p {
        font-size: 14px;
    }

    .privacy_section {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .privacy_section h2 {
        font-size: 20px;
        padding-bottom: 25px;
        text-underline-offset: 6px;
    }

    .privacy_section h3 {
        padding-bottom: 6px;
    }

    .privacy_section p {
        padding-bottom: 15px;
    }

    .privacy_section ul {
        margin-left: 25px;
        margin-bottom: 8px;
    }


}