body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

header {
    background-color: #fff;
    padding: 20px 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.logo {
    height: 40px;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to top, #ffe4e1, #fff);
}

.hero .main-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0 0 20px;
    color: #333;
}

.hero-subtext {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.download-buttons a {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: bold;
    transition: background 0.3s;
}

.download-buttons a:hover {
    background: rgba(0, 0, 0, 0.9);
}

.download-buttons .button-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-buttons a img {
    width: 24px;
    height: auto;
}

footer {
    background-color: #333;
    color: #bbb;
    padding: 40px 20px;
    text-align: center;
}

.footer-content p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5em;
    }

    .hero-subtext {
        font-size: 0.95em;
        padding: 0 10px;
    }

    header {
        padding: 15px 20px;
    }
}
