body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: #0b0f16;
    color: #e0e6f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #1a202c;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 700px;
    width: 100%;
}

h1 {
    color: #63b3ed; /* A nice blue */
    font-size: 3.5em;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.5em;
    color: #a0aec0;
    margin-top: 0;
    margin-bottom: 30px;
}

.content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cbd5e0;
}

.content strong {
    color: #63b3ed;
}

.contact-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

.contact-info p {
    margin: 8px 0;
    font-size: 1em;
}

.contact-info a {
    color: #63b3ed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #90cdf4;
    text-decoration: underline;
}

footer {
    margin-top: 40px;
    font-size: 0.85em;
    color: #718096;
}