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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    width: 100%;
    padding: 40px 20px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

.logo-mark {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    color: #000000;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
}

.company-name {
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #000000;
}

footer {
    text-align: center;
    animation: fadeIn 1.5s ease-in;
}

.contact {
    font-size: 13px;
    font-weight: 300;
    color: #666666;
    letter-spacing: 0.5px;
}

.contact a {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact a:hover {
    opacity: 0.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .logo-mark {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }
    
    .company-name {
        font-size: 16px;
        letter-spacing: 3px;
    }
}