* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.header {
    background: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    width: 100px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav a {
    color: #333;
    text-decoration: none;
    padding: 10px;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background: #e9ecef;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.features {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.feature {
    flex: 1;
    padding: 20px;
}

.feature h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.main-features {
    background: #f1f1f1;
    padding: 40px 20px;
    text-align: center;
}

.main-features ul {
    list-style: none;
    padding: 0;
}

.main-features li {
    margin: 10px 0;
}

.details-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ffcc00;
    border: none;
    cursor: pointer;
}

.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
/* Add these styles to your existing CSS file */

.download-button-container {
    text-align: center;
    margin-top: 20px;
}

.download-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.download-button:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.4);
}
