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

body {
    background-color: #ffffff;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #321b26;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

.logo {
    width: 350px;
    max-width: 80%;
    margin-bottom: 30px;
}

h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact p {
    margin-bottom: 12px;
    font-size: 15px;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    margin-top: 25px;
    font-size: 14px;
}