* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f4f8;
    background-image: radial-gradient(#d3e2f2 1px, transparent 1px);
    background-size: 20px 20px;
    color: #1a2a3a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.maintenance-container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0f2537;
    margin-bottom: 20px;
}

.image-container {
    margin: 30px auto;
    max-width: 450px;
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* Si quieres que la ilustración del robot quede en círculo, o quita esta línea si prefieres cuadrada */
}

.info-box h2 {
    font-size: 2.5rem;
    color: #0a4f8f;
    margin-bottom: 15px;
}

.highlight {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.6;
}

.subtext {
    font-size: 1rem;
    color: #627d98;
}

/* Ajustes para pantallas chicas */
@media (max-width: 600px) {
    header h1 { font-size: 1.6rem; }
    .info-box h2 { font-size: 1.8rem; }
    .highlight { font-size: 1rem; }
}