body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #F8F8F8;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #333;
    margin-bottom: 5px;
}

h2 {
    color: #333;
    margin-top: 35px;
}

h3 {
    color: #333;
    margin-top: 25px;
}

p {
    color: #555;
}

.tagline {
    color: #5B21B6;
    font-size: 1.1em;
    margin-top: 0;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
    color: #555;
    padding-left: 20px;
    position: relative;
}

li::before {
    content: "\2022";
    color: #5B21B6;
    position: absolute;
    left: 0;
}

a {
    color: #5B21B6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 25px 0;
}

.screenshots figure {
    margin: 0;
    flex: 0 1 220px;
    max-width: 240px;
}

.screenshots img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: block;
}

.screenshots figcaption {
    color: #666;
    font-size: 0.85em;
    margin-top: 8px;
    text-align: center;
}

.store-link-wrapper {
    margin-top: 5px;
}

.store-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #5B21B6;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

.store-link:hover {
    background-color: #45188c;
    text-decoration: none;
}

.note {
    font-size: 0.9em;
    color: #666;
}

/* Back link at the top of the legal pages, so they are not a dead end. */
.site-nav {
    margin-bottom: 25px;
    font-size: 0.9em;
}

.footer {
    margin-top: 50px;
    border-top: 1px solid #ccc;
    color: #555;
    text-align: center;
    padding: 15px 0;
}

.footer a {
    color: #555;
    display: inline-block;
    margin: 0 10px;
}

@media (max-width: 767px) {
    .screenshots figure {
        flex: 0 1 45%;
    }

    .store-link {
        display: block;
        margin: 20px auto 0;
    }
}
