body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    background-color: #fff8e1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.logo img {
    width: 120px;
    margin-bottom: 20px;
}

h1 {
    color: #111;
    font-size: 28px;
    margin-bottom: 10px;
}

.tagline {
    color: #444;
    font-size: 16px;
    margin-bottom: 30px;
}

.download-btn {
    display: inline-block;
    background-color: #ffb300;
    color: #000;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 179, 0, 0.4);
}

.download-btn:hover {
    background-color: #ffa000;
    transform: translateY(-2px);
}

.note {
    margin-top: 20px;
    color: #777;
    font-size: 14px;
}

footer {
    margin-top: 30px;
    font-size: 14px;
}

footer a {
    color: #ffb300;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

/* Privacy / Contact pages */

.policy,
.contact {
    text-align: left;
}

.policy a,
.contact a,
.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #ffb300;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}