/* Resetting default margin and padding for all elements */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}

/* Styling the header */
header {
    max-width: 840px;
    margin: 0 auto;
    background-color: #2E284F;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

/* Styling the main content section */
section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Styling the level 2 headers */
h2 {
    text-align: center;
    color: #222;
}

/* Styling images within the content */
img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.screenshot-container {
    display: flex;
    flex-direction: column; /* Set the direction to column */
    align-items: center;
    margin-top: 20px;
}

.screenshot-container img {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* Adjust the corner radius as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 10px 0; /* Adjust the spacing between images */
    transition: transform 0.3s ease;
}

.screenshot-container img:hover {
    transform: scale(1.05);
}

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

/* Regular list items (features) */
ul:not(.support-options) li {
    margin-bottom: 10px;
    background-color: #2E284F;
    color: #fff;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

ul:not(.support-options) li:hover {
    background-color: rgba(46, 40, 79, 0.8);
}

/* Support options list items */
.support-options li {
    margin-bottom: 10px;
    padding: 8px;
    color: #333;
}

/* Links within support items */
.support-options li a {
    color: #666; /* Bright blue color that's commonly used for links */
    text-decoration: underline;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
    line-height: 1.4;
    padding: 0 2px;
}

.support-options li a:hover {
    color: #003d7a;
    background-color: #e6f0ff;
    padding: 0 4px;
    border-radius: 3px;
}

p.download-button {
    text-align: center;
}

p.copyright {
    text-align: center;
    padding: 20px 0;
    color: #666;
}

/* Footer links styling */
footer a {
    color: #666;
    text-decoration: underline;
    transition: all 0.3s ease;
    padding: 0 8px;
    font-weight: 600;
    display: inline-block;
    line-height: 1.4;
}

footer a:hover {
    color: #333;
    background-color: #e6f0ff;
    border-radius: 3px;
}

/* Style the separator */
.copyright span.separator {
    color: #999;
    margin: 0 4px;
}
