*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    height: 100%;
    overflow: hidden;
}
body {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    text-align: center;
    padding: 1.5rem;
    font-family: "Montserrat", sans-serif;
    color: #4a4a4a;
}
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 0;
}
.container {
    width: 100%;
    max-width: 600px;
}
.logo {
    width: 100%;
    max-width: clamp(240px, 50vw, 450px);
    max-height: 40vh;
    height: auto;
    object-fit: contain;
}
.message {
    margin-top: clamp(1rem, 4vh, 2rem);
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5;
}
.contact-info {
    flex-shrink: 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 1.25rem;
    margin-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    font-weight: 300;
    color: #777;
    letter-spacing: 0.4px;
    line-height: 1.7;
}
.contact-info a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 400;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 0.3s;
}
.contact-info a:hover,
.contact-info a:focus {
    background-size: 100% 1px;
}
