/* Base styles */
body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    background-color: #E0F0FF;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 32px 24px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    position: relative;
}

.content {
    text-align: center;
    position: sticky;
    top: 0;
    background-color: #E0F0FF;
    z-index: 1;
}

.logo {
    width: 96px;
    height: 96px;
    margin-bottom: 32px;
}

h1 {
    font-size: 48px;
    margin: 0 0 16px;
}

p {
    font-size: 20px;
    color: #000;
    margin: 0 0 32px;  /* Removed margin-top */
}

.highlight {
    color: #007BFF;
}

.app-store-link img {
    height: 56px;
    width: auto;
}

.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.app-image {
    width: 100%;
    max-width: 400px;
}

/* Media queries for responsiveness */
@media (min-width: 431px) {
    .content {
        margin-bottom: 30px;
    }

    h1 {
        font-size: 48px;
    }

    p {
        font-size: 20px;
    }
}

@media (min-width: 641px) {
    .container {
        flex-direction: column;
    }

    .content {
        text-align: center;
        margin: 0;
        position: static;
    }

    h1 {
        font-size: 48px;
    }

    p {
        font-size: 20px;
    }

    .app-image {
        max-width: 450px;
    }
}

@media (min-width: 769px) {
    body {
        padding: 0;
    }

    .container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: 980px;
        margin: 0 auto;
        padding: 0;
    }

    .content, .image-container {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .content {
        text-align: left;
        margin-right: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .image-container {
        order: -1;
        justify-content: center;
        margin-bottom: 0;
    }

    .app-image {
        max-width: 584px;
    }
}

@media (min-width: 1025px) {
    .container {
        padding: 0;
        max-width: 980px;
        min-height: 100vh;
        margin: 0 auto;
    }

    .content, .image-container {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .content {
        text-align: left;
        margin-right: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .image-container {
        order: -1;
        justify-content: center;
    }

    .app-image {
        max-width: 584px;
    }
}

/* Outfit font styles */
.outfit-semibold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
