body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.maintenance-container {
    padding: 20px;
    max-width: 600px;
    width: 90%;
}

.logo {
    color: #007bff; /* DECLABS brand color (example) */
    font-size: 2.5em;
    margin-bottom: 30px;
}

.message-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.message-box h2 {
    color: #007bff;
    font-size: 1.8em;
    margin-top: 0;
}

.message-box p {
    font-size: 1.1em;
    line-height: 1.6;
}

.details {
    margin: 20px 0;
    padding: 15px;
    background-color: #e9f7ff;
    border-radius: 4px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #0056b3;
}

.footer {
    margin-top: 30px;
    font-size: 0.8em;
    color: #666;
}

/* --- Responsiveness: Adjust for smaller screens --- */
@media (max-width: 480px) {
    .logo {
        font-size: 2em;
    }
    
    .message-box h2 {
        font-size: 1.5em;
    }
    
    .social-links a {
        display: block; /* Stack links vertically on small screens */
        margin: 10px 0;
    }
}