body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f8f8;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    text-align: center;
}

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

h1 {
    font-size: 2.8em;
    letter-spacing: 1px;
    margin: 0;
}

.subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.email-button {
    text-decoration: none;
    padding: 12px 30px;
    background-color: #111;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.email-button:hover {
    background-color: #333;
}