/* 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;
    /* Creating space between logo and text */
    padding: 2rem;
}

.logo {
    max-width: 100%;
    height: auto;
    /* Limit logo size if it's very large, user can adjust */
    max-height: 400px;
    object-fit: contain;
}

.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;
}

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

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