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

/* Base layout */
html, body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
}

/* Center everything */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Logo */
.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Company name */
.company-name {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
}

/* Button */
.contact-button {
    text-decoration: none;
    padding: 12px 28px;
    border: 2px solid #000000;
    color: #000000;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #000000;
    color: #ffffff;
}
