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

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    margin-top: 0;
}

.logo {
    /* NEW RULE: Fixed width and auto height to retain the new 754x297 aspect ratio */
    width: 400px; 
    height: 158; 
    margin-bottom: 20px;
    margin-top: 0;
}

.tagline {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    font-size: 1.2em;
}

hr {
    border: 0;
    height: 1px;
    background-color: #ccc;
    margin: 30px auto;
    width: 50%;
}

.contact-info p {
    font-size: 1.1em;
    margin: 10px 0;
}

.footer-text {
    margin-top: 40px;
    font-size: 0.8em;
    color: #999;
}