* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9fd 100%);
    min-height: 100vh;
    color: #2d3748;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 600px;
}

.construction-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

h1 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1rem;
}

.small {
    font-size: 1rem;
    color: #718096;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    h1 {
        font-size: 2.4rem;
    }
    
    p {
        font-size: 1.1rem;
    }
    
    .construction-img {
        margin-bottom: 2rem;
    }
}