/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #faf9f6;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    background: white;
    padding: 2rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    text-align: center;
}

.logo {
    max-width: 180px;
    margin-bottom: 1rem;
}

.new-logo {
    margin-top: 1.5rem;
}

h1 {
    color: #7a3b1f;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.message {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.new-location {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
}

.contact {
    margin-top: 1rem;
    font-size: 1rem;
}

a {
    color: #7a3b1f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #777;
}
