body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}
.container {
    max-width: 800px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.logo {
    max-width: 250px;
    margin-bottom: 2rem;
}
h1 {
    font-family: 'Source Serif 4', serif;
    font-size: 2.5rem;
    color: #0A2A4E;
}
p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}
#countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}
#countdown div {
    background: #f4f7f6;
    padding: 1rem;
    border-radius: 5px;
}
#countdown span {
    display: block;
    font-size: 2.5rem;
    color: #D48C33;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.newsletter-form input {
    width: 300px;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
.newsletter-form button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    background-color: #0A2A4E;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}
.newsletter-form button:hover {
    background-color: #D48C33;
}
footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
footer nav {
    margin-bottom: 1rem;
}
footer a {
    color: #555;
    text-decoration: none;
    margin: 0 1rem;
}
footer a:hover {
    text-decoration: underline;
}
.copyright {
    font-size: 0.9rem;
    color: #888;
}