/* RESPONSIVE */

@media (max-width: 767px) {
    .desktop {
        display: none;
    }
}

@media (min-width: 767px) {
    .mobile {
        display: none;
    }
}

/* HERO SECTION */

.hero-text {
    text-align: center;
    color: #001122;
    font-size: calc(var(--pico-font-size) * 1.9);
}

.hero-gif {
    max-width: 100%;
    max-height: 17.65rem;
    height: auto;
    display: block;
    /* Ensure the image behaves as a block element */
    margin: 0 auto;
    /* Center the image horizontally */
    border-radius: 20px;
}

.hero-subtext {
    text-align: center;
    font-weight: 350;
    font-size: calc(var(--pico-font-size));
    color: gray;
    margin-top: 1rem;
}

/* WAITLIST */

.waitlist-form {
    max-width: 25rem;
    margin: 0 auto;
}

.waitlist-email {
    margin-bottom: 0px !important;
    border-radius: 20px;
}

.waitlist-submit {
    background-color: #001122;
    border-style: none;
    color: white;
    border-radius: 20px;
}

/* FEATURES SECTION */

.main-background {
    background-color: #f7f7f7;
    padding-bottom: 1px;
}

@media (max-width: 767px) {

    /* MOBILE */
    .service {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .service-gif {
        max-width: 100%;
        max-height: 17.65rem;
        height: auto;
        display: block;
        margin: 0 auto;
        /* Ensure the image behaves as a block element */
        border-radius: 20px;
    }

    .service-title {
        margin: 0;
        text-align: center;
        color: #001122;
        font-size: calc(var(--pico-font-size) * 1.3);
    }

    .service-subtext {
        margin: 0;
        text-align: center;
        font-weight: 350;
        font-size: calc(var(--pico-font-size));
        color: gray;
        margin-top: 0.5rem;
    }
}

@media (min-width: 767px) {

    /* SHOWS ON DESKTOP */
    .service {
        margin-top: 3rem;
        margin-bottom: 6rem;
    }

    .service-information {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-gif {
        max-width: 100%;
        max-height: 17.65rem;
        height: auto;
        display: block;
        /* Ensure the image behaves as a block element */
        border-radius: 20px;
    }

    .service-title {
        margin: 0;
        text-align: left;
        color: #001122;
        font-size: calc(var(--pico-font-size) * 1.3);
    }

    .service-subtext {
        margin: 0;
        text-align: left;
        font-weight: 350;
        font-size: calc(var(--pico-font-size));
        color: gray;
        margin-top: 1rem;
    }
}

/* FAQ */

.faq-title {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: #001122;
    font-size: calc(var(--pico-font-size) * 1.3);
}

.faq-article {
    border-radius: 20px;
    max-width: 30rem;
    margin: 0 auto;
    background-color: #f7f7f7;
    margin-bottom: 3rem;
}

.faq-accordion-summary {
    color: #001122;
}

.faq-hr {
    border: 1px solid #ebebeb;
    border-radius: 20px;
}

.faq-last-details {
    margin-bottom: 0px;
}

/* FOOTER */

.footer-background {
    background-color: #f7f7f7;
}

.footer-copyright {
    margin-bottom: 0.5rem;
}