/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #878787;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navbar */
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #bdbdbd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar .logo img {
    width: 50px;
    height: auto;
}

.navbar .nav-links {
    display: flex;
    gap: 20px;
}

.navbar .nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #5a4bfb;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
}

.hero-logo {
    width: 80px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.download-button {
    background-color: #1500ff;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #5a4bfb;
}

.system-info {
    font-size: 1.1em;
    color: #000000;
    margin-top: 15px;
}

/* Screenshots Section */
.screenshots {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px;
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    background-color: #59595a;
    border-radius: 15px;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.screenshot-container {
    text-align: center;
    flex-basis: 30%;
    margin-bottom: 30px;
}

.screenshot-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.screenshot-container h3 {
    margin-top: 15px;
    font-size: 1.2em;
    color: #ffffff;
    font-weight: 500;
}

/* Footer */
/* Footer */
.footer {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: #f8f8f8;
    color: #666;
    font-size: 0.9em;
    border-top: 1px solid #eaeaea;
    position: relative;
    bottom: 0;
    margin-top: auto; /* Ensures it stays at the bottom */
}

.footer p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .screenshots {
        flex-direction: column;
        align-items: center;
        padding: 30px 15px;
    }

    .screenshot-container {
        flex-basis: 80%;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .download-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}
