/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(to bottom, #42A9FF, #77C2FF);
}


h1,
h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

h1 {
    font-size: 32pt;
}

a {
    color: #ffffff;
    text-decoration: none;
}

/* Main */
main {
    padding-top: 120px;
}

main .cta {
    background-color: transparent;
}

main .cta img {
    height: 60px;
    width: auto;

}


/* Header */
header {
    background-color: #42A9FF;
    color: #fff;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.header-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 80px;
    width: auto;
    ;
}

.app-logo {
    height: auto;
    width: 180px;
    border-radius: 32px 32px;
}



.intro {
    margin: 0 auto;
    width: 640px;
    text-align: center;
}

.intro p {
    font-size: 18pt;
    text-align: center;

}


/* Main Content */
.features {
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    margin-bottom: 60px;
}

.feature {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 120px;
    text-align: left;
    justify-content: center;
}

.feature img {
    width: 100%;
    max-width: 300px;
    order: 1;
    /* -webkit-filter: drop-shadow(0px 10px 65px rgba(0,50,90,0.5)); */
    filter: drop-shadow(0px 10px 65px rgba(0, 50, 90, 0.5));
    border-radius: 32px 32px;

}

.feature div {
    order: 2;
}

.feature h2 {
    text-align: left;
}


.feature-text {
    max-width: 400px;

}

.feature-reverse {
    flex-direction: row-reverse;
}

/* Call to Action */
.cta {
    background-color: #ffc107;
    padding-bottom: 60px;
    padding-top: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 24pt;
}

.cta p {
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 40px;
    width: 800px;
}


.cta img {
    height: 60px;
    width: auto;
}

/* Footer */
footer {
    background-color: rgb(43, 43, 43);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 10pt;
    color: rgb(255, 255, 255, 0.3)
    
}

footer a {
    color: rgb(255, 255, 255, 0.3)
}

footer a:hover {
    color: #ffffff;
}

.terms {
    margin: 0 auto;
    text-align: left;
    width: 640px;
    margin-bottom: 60px;
}

.terms h2 {
    text-align: left;
}

.terms a,
:visited {
    color: white;
    text-decoration: underline;
}

/* Media query for smaller screens */
@media screen and (max-width: 767px) {
    .feature {
        margin: 0 auto;
        flex-direction: column;
        text-align: center;
        gap: 30px;
        width: 80%;

    }

    .intro {
        margin: 24px 24px;
        width: auto;
        text-align: center;
    }

    .cta p {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .feature img {
        margin-bottom: 15px;
    }

    .feature h2 {
        text-align: center;
    }

    .feature-reverse img {
        margin-top: 15px;
        margin-bottom: 0;
    }

    .terms {
        width: 80%;
    }
    .cta p {
        margin: 0 auto;
        
    }
    
}