/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #faf3e1;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.logo-main {
    width: 100%;
    height: auto;
}

.logo-text {
    width: 100%;
    font-family: "Arial", "Helvetica", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a231d;
    font-size: clamp(1.8rem, 7vw, 3.2rem);
    text-align: justify;
    text-align-last: justify;
    line-height: 1;
    margin-top: 5px;
    padding: 0 2px;
    letter-spacing: 0.1em;
}

.contact-link {
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: #000;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .contact-link {
        font-size: 1.2rem;
    }

    .logo {
        max-height: 250px;
    }
}