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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

h1, h2, h3 {
    color: #2c3e50;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

h2 {
    font-size: 28px;
    margin-top: 40px;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 5px;
}

/* Header Section */
header {
    text-align: center;
    margin-bottom: 40px;
}

header p {
    font-size: 18px;
    color: #7f8c8d;
}

/* App Overview */
.overview {
    margin-bottom: 40px;
}

.features {
    margin-bottom: 40px;
}

.features ul {
    list-style-type: disc;
    padding-left: 20px;
}

.features li {
    margin-bottom: 10px;
}

/* Version Info */
.version-info {
    margin-bottom: 40px;
}

/* Download Section */
.download {
    text-align: center;
    margin-top: 40px;
}

.download-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #2980b9;
}

/* Screenshots Section */
.screenshots {
    margin-top: 40px;
}

.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.screenshot-gallery .screenshot {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    text-align: center;
    margin-top: 40px;
}

.contact a {
    color: #3498db;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}
