body {
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    color: #333;
    background-color: #fff;
}

.top-banner {
    background-color: #821621;
    height: 70px;
    width: 100%;
    margin-bottom: 40px;
}

.container {
    max-width: 600px;
    margin: -30px auto 0;
    padding: 0 20px;
    position: relative;
}

/* Coffee beans accent */
@media (min-width: 1440px) {
    .container:before {
        content: '';
        background-image: url('https://www.scooterscoffee.com/static/version1752598034/frontend/Scooters/base/en_US/images/coffee-beans-left.png');
        background-repeat: no-repeat;
        background-size: cover;
        width: 160px;
        height: 251px;
        position: fixed;
        top: 290px;
        left: 0;
        z-index: -1;
        opacity: 0.9;
    }
}

.logo {
    max-width: 170px;
    height: auto;
    margin-bottom: 30px;
    position: relative;
    top: -46px;
    margin-bottom: -20px;
    color: rgb(241, 37, 53);
}

.heading {
    color: rgb(241, 37, 53);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.app-buttons img {
    display: block;
}

.app-buttons a {
    color: #333;
}

.steps {
    text-align: left;
    max-width: fit-content;
    margin: 0 auto;
    padding: 14px 20px;
}

ol {
    padding-left: 20px;
    margin: 0;
}

li {
    font-size: 20px;
    line-height: 28.5714px;
    text-align: left;
    color: #333;
    margin-bottom: 10px;
}

li:last-child {
    margin-bottom: 0;
}

.app-screenshots {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
    padding: 0 20px;
}

.app-screenshots img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .app-screenshots {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 20px;
        padding: 0;
        margin: 60px 0;
    }

    .app-screenshots img {
        width: 19%;
        min-width: 180px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
        top: -30px;
    }

    .heading {
        font-size: 28px;
    }

    .top-banner {
        height: 50px;
        margin-bottom: 20px;
    }

    .container {
        margin-top: -20px;
    }

    li {
        font-size: 18px;
        line-height: 26px;
    }
}