/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

/* Container for layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Image */
.hero {
    text-align: center;
    margin: 20px 0;
}

.hero img {
    width: 75%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

/* Headings */
h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Subtext */
.est, .tagline {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

/* Links */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* List Styling */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding: 8px 0;
}

/* Pace List */
.pace-list li {
    font-size: 1rem;
}

/* Download Button */
.download-btn {
    display: block;
    text-align: center;
    background: #007BFF;
    color: white;
    padding: 12px;
    border-radius: 5px;
    margin: 20px auto;
    width: 200px;
    font-size: 1rem;
    font-weight: bold;
}

.download-btn:hover {
    background: #0056b3;
}

/* Sprint & Shortcut Sections */
.sprint-section, .shortcut {
    margin-top: 20px;
}

.sprint, .shortcut {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Sprint Images */
.sprint img, .shortcut img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 5px;
    display: block;
    margin-top: 10px;
}

/* Mobile Friendly Layout */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .download-btn {
        width: 100%;
    }

    .sprint img, .shortcut img {
        max-width: 100%;
    }
}