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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(45deg, #15b7cb, #161b66); /* Gradient background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.maintenance-container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
}

.logo-image {
    width: 250px;
    margin-bottom: 20px;
}

.message h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.message p {
    font-size: 1.2em;
    color: #040404;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-info {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1em;
    color: #040404;
}

.contact-info a {
    color: #2575fc;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo-image {
        width: 200px;
    }

    .message h1 {
        font-size: 2.2em;
    }

    .message p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .maintenance-container {
        padding: 20px;
    }

    .logo-image {
        width: 180px;
    }

    .message h1 {
        font-size: 1.8em;
    }

    .message p {
        font-size: 1em;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info h3 {
        font-size: 1.3em;
    }
}
