body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background-color: #FFF7E7;
    color: #222;
    line-height: 1.6;
    text-align: center;
}

.header {
    padding: 2rem 1rem;
    background-color: #FFF7E7;
}

.logo {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
}

.tagline {
    margin: 0.5rem 0 1.5rem;
    color: #555;
}

.store-buttons img {
    height: 50px;
    margin: 0 10px;
    transition: transform 0.2s ease;
}

.store-buttons img:hover {
    transform: scale(1.05);
}

.hero {
    padding: 2rem 1rem;
}

.hero-image {
    width: 80px;
    height: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.features {
    background: #fff;
    padding: 2rem 1rem;
}

.features h2 {
    margin-bottom: 1rem;
}

.features ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.features li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.footer {
    background-color: #FFF7E7;
    padding: 1rem;
    font-size: 0.9rem;
}