/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #5442f6;
    padding: 15px 20px;
    color: white;
}

.navbar .logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #ffcc00;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #5442f6;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        color: white;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #8834fe, #5c73ff);
    color: white;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2rem;
}

.hero p {
    font-size: 1.2rem;
}

.hero-buttons .btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    background: #0b4ca9;
    border-radius: 5px;
    font-size: 1rem;
}

.learn-btn {
    background: #3498db;
}

/* Sections */
.section {
    padding: 60px 20px;
    text-align: center;
    background: white;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.section ul, .section ol {
    list-style: none;
    padding: 0;
}

.section li {
    font-size: 1.1rem;
    margin: 10px 0;
}

/* Download Section */
.download-btn {
    display: inline-block;
    padding: 15px 25px;
    font-size: 1.2rem;
    color: #fff;
    background: #e74c3c;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

/* Screenshot Gallery */
.screenshot-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.screenshot-gallery img {
    width: 100%;
    max-width: 300px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #2c3e50;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links li {
        text-align: center;
        padding: 10px;
    }

    .menu-toggle {
        display: block;
    }
}
