<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: "Roboto", sans-serif;
}

.body_div {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

footer {
    font-size: 17px;
    background-color: #ff6700;
    color: #ffffff;
    padding: 40px 5%;
}

.header_div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff8f1;
    padding: 19px 5% 0px 5%;
    margin: 0px;
}

.signout {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 16px 20px;
    cursor: pointer;
    background-color: #ff6700;
}

.signout:hover {
    background-color: #ce5b0e;
}

.heading_design {
    font-size: 32px;
    font-weight: bolder;
}

.subheading_design {
    margin-top: 23px;
    font-size: 23px;
    font-weight: 700;
    color: #ce5b0e;
}

.btn-primary {
    background-color: #ff6700 !important;
    border-color: #ff6700 !important;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #ff6700 !important;
    border-color: #ff6700 !important;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 800;
}
.hero-text p {
    font-size: 19px;
    margin-bottom: 23px;
}

.hero-image {
    display: block;
}

.how_it_works_text h3 {
    font-size: 23px;
    color: #ff6600;
    text-align: center;
    font-weight: bold;
}

.how_it_works_text p {
    text-align: center;
    font-size: 17px;
}

.hero-image img {
    height: 490px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-text h1 {
        font-size: 37px;
        margin-bottom: 16px;
        font-weight: 800;
    }
    .hero-text p {
        font-size: 18px;
        margin-bottom: 23px;
    }

    .hero-image {
        display: block;
    }

    .hero-image img {
        height: 440px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 16px;
        font-weight: 800;
    }
    .hero-text p {
        font-size: 16px;
        margin-bottom: 23px;
    }

    .hero-image {
        display: block;
    }

    .hero-image img {
        height: 320px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-text h1 {
        font-size: 40px;
        margin-bottom: 16px;
        font-weight: 800;
    }
    .hero-text p {
        font-size: 17px;
        margin-bottom: 23px;
    }

    .hero-image {
        display: block;
    }

    .hero-image img {
        height: 320px;
    }
}

</pre></body></html>