body {
    background-color: #0787a0;
    height: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
p {
    color: #fef2cd;
}

h1 {
    font-size: 3.5rem;
    font-weight: 500;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.25;
}

a {
    width: fit-content;
}

@media screen and (min-width: 1025px) {
    h1 {
        font-size: 4rem;
        font-weight: 500;
    }

    h2 {
        font-size: 2.25rem;
        font-weight: 500;
    }

    p {
        font-size: 1.5rem;
        font-weight: 300;
        line-height: 1.25;
    }
}

.hamburger-icon {
    font-size: 3rem;
    color: #fef2cd;
    background-color: transparent;
    border: none;
    max-height: 3rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
}
/* Nav styles */
.desktop-nav {
    display: none;
}

.mobile-nav {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.mobile-navigation-container {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    background-color: #fef2cd;
    width: 100%;
    padding: 2rem 0;
    padding-top: 4rem;
}

.mobile-nav-item {
    color: #025f79;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    width: 100%;
}

.close-button {
    display: flex;
    justify-content: flex-end;
    padding: 0 2rem;
    font-size: 2rem;
    background-color: transparent;
    border: none;
    color: #025f79;
    max-height: 3rem;
    position: absolute;
    right: 0;
    top: 20px;
}

main {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    max-width: 1440px;
    margin: 0 auto;
}

@media screen and (min-width: 769px) {
    .desktop-nav {
        display: block;
    }
    .hamburger-icon,
    .mobile-nav {
        display: none;
    }

    .header-container {
        max-width: 1440px;
        margin: 0 auto;
    }
    /* Nav styles */
    .navigation-container {
        display: flex;
        column-gap: 2.75rem;
        justify-content: flex-end;
    }

    .nav-item {
        color: #fef2cd;
        text-decoration: none;
        font-size: 1.25rem;
    }

    .nav-item:hover {
        text-decoration: underline;
    }

    main {
        row-gap: 6.25rem;
    }
}

/* about styles */
#about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 2rem;
    row-gap: 2.5rem;
}

.about-left-content {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    max-width: 570px;
}

.app-store-badges {
    display: flex;
    flex-direction: column;
    row-gap: 0.25rem;
}

.about-background-image {
    display: none;
}

@media screen and (min-width: 1025px) {
    #about {
        display: flex;
        flex-direction: row;
        justify-content: center;
        position: relative;
        margin-bottom: 270px;
    }

    .about-background-image {
        position: absolute;
        bottom: -450px;
        z-index: -1;
        display: block;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    #about {
        display: flex;
        flex-direction: row;
        justify-content: center;
        position: relative;
        margin-bottom: 270px;
    }

    .about-background-image {
        position: absolute;
        bottom: -350px;
        z-index: -1;
        display: block;
        width: 95%;
    }
}

/* How it works styles */

#how-it-works {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    row-gap: 3.75rem;
}

.how-it-works-header,
.use-cases-header {
    margin-left: 2rem;
}

.how-it-works-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    row-gap: 3rem;
}

.how-it-works-item {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    align-items: center;
}

.how-it-works-text-container {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}

.how-it-works-text {
    max-width: 250px;
}

.how-it-works-image {
    width: 95%;
}

@media screen and (min-width: 1025px) {
    .how-it-works-header,
    .use-cases-header {
        margin-left: 13.5rem;
    }

    .how-it-works-content {
        flex-direction: row;
        column-gap: 1.5rem;
    }

    .how-it-works-image {
        width: 100%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .how-it-works-content {
        flex-direction: row;
    }

    .how-it-works-image {
        width: 90%;
    }
}

/* features styles */
#features {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    column-gap: 1rem;
    align-items: center;
    background-color: #025f79;
    padding: 0.75rem;
    border-radius: 1rem;
}

.features-background-image {
    display: none;
}

@media screen and (min-width: 1025px) {
    #features {
        padding: 0;
    }

    .features-list {
        display: flex;
        flex-direction: column;
        row-gap: 0.5rem;
        margin-top: 9.25rem;
        margin-left: 26rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .features-background-image {
        display: block;
        position: absolute;
        bottom: -50px;
        z-index: -1;
    }
}

/* Use cases styles */

#use-cases {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    row-gap: 2rem;
}

.use-cases-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2rem;
}

.use-case-text-container {
    max-width: 268px;
    row-gap: 0.5rem;
}

@media screen and (min-width: 1025px) {
    #use-cases {
        row-gap: 3.75rem;
    }

    .use-cases-list {
        flex-direction: row;
        column-gap: 6.25rem;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    #use-cases {
        row-gap: 3.75rem;
    }

    .use-cases-list {
        flex-direction: row;
        column-gap: 4rem;
    }
}

/* Plans Styles */
#plans {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 0 2rem;
    row-gap: 3.75rem;
}

.plans-content {
    display: flex;
    justify-content: center;
}

table {
    border-spacing: 1rem;
    border-collapse: separate;
}

.table-value {
    background-color: #fdc04a;
    text-align: center;
    vertical-align: middle;
    color: #025f79;
    font-size: 1.25rem;
    padding: 1.25rem 0;
    border-radius: 1rem;
    width: 250px;
}

td:nth-child(1) {
    text-align: right;
    vertical-align: middle;
}

.plans-background-image {
    display: none;
}

@media screen and (min-width: 769px) {
    #plans {
        padding: 0;
    }

    .table-value {
        background-color: #fdc04a;
        text-align: center;
        vertical-align: middle;
        color: #025f79;
        font-size: 1.25rem;
        padding: 1.25rem 0;
        border-radius: 1rem;
        width: 250px;
    }

    td:nth-child(1) {
        text-align: right;
        vertical-align: middle;
    }

    .plans-background-image {
        display: block;
    }
}

/* Get Started Styles */
#get-started {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    row-gap: 2.5rem;
    text-align: center;
}

.get-started-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    column-gap: 2.5rem;
}

.get-started-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
}

.get-started-background-image {
    z-index: -2;
}

@media screen and (min-width: 769px) {
    .get-started-content {
        flex-direction: row;
    }

    .get-started-text-container {
        align-items: flex-start;
    }
}

/* footer styles */
footer {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    margin-top: 12rem;
}

.footer-background-svg {
    margin-bottom: -10px;
}

.footer-background-box {
    background-color: #fdc04a;
    height: 700px;
}

.footer-background-container {
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 6rem;
    margin-bottom: 3.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    text-align: center;
}

.footer-copyright {
    font-size: 1rem;
    color: #025f79;
    text-align: center;
    padding-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.footer-links ul li a {
    color: #025f79;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 769px) {
    footer {
        margin-top: 3.5rem;
    }

    .footer-background-box {
        height: 260px;
    }

    .footer-content {
        flex-direction: row;
        column-gap: 15rem;
    }

    .footer-links {
        display: flex;
        flex-direction: row;
        row-gap: 0;
        column-gap: 7.5rem;
        text-align: left;
    }

    .footer-links ul {
        row-gap: 0.5rem;
    }
}

#texture {
    position: absolute;
    top: 250px;
    bottom: 0;
    z-index: -3;
}

/* Privacy policy styles */

.privacy-container {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.privacy-section {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
