body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333;
    text-align: center;
}

.maintenance-container {
    background-color: #fff;
    padding: 40px 60px; /* Overall padding inside the white box */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

.logo img {
    max-width: 200px; /* Logo size (adjust as needed) */
    height: auto;
    margin-bottom: 0px; /* Ensures no space *below* the logo */
}

h1 {
    font-size: 2.2em;
    color: #333;
    /* *** CRITICAL CHANGE: Remove default top margin from H1 *** */
    margin-top: 0px; /* Set to 0 to remove any default space above the H1 */
    margin-bottom: 20px; /* Space between H1 and first paragraph (adjust if needed) */
    line-height: 1.3;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px; /* Space between paragraphs (adjust if needed) */
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .maintenance-container {
        padding: 30px 40px;
    }

    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .maintenance-container {
        padding: 20px 25px;
    }

    .logo img {
        max-width: 150px; /* Logo size for smaller screens (adjust as needed) */
        margin-bottom: 0px; /* No space below logo on mobile */
    }

    h1 {
        font-size: 1.5em;
        margin-top: 0px; /* Ensure no top margin on mobile H1 either */
    }
}