body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: url('https://via.placeholder.com/1500x1000') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.maintenance {
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.maintenance:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
}

p {
    font-size: 1em;
    margin: 10px 0;
}

.contact-info p {
    margin: 5px 0;
    font-size: 0.9em;
}

.footer {
    margin-top: 20px;
    font-size: 0.8em;
    color: #666;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 0.9em;
    }

    .contact-info p {
        font-size: 0.8em;
    }
}
