body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('Images/AdobeStock_432595573.jpeg') no-repeat center center fixed;
    background-size: cover;
}

.maintenance-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 100%;
    box-sizing: border-box;
    margin: 20px;
}

.logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    max-height: 270px; 
	object-fit: cover;
    margin-bottom: 20px;
}

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

p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 5px 0;
    color: #007BFF;
}

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

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

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

    .logo {
        max-width: 260px; 
        max-height: 180px; 
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}

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

    .logo {
        max-width: 195px; 
        max-height: 135px; 
    }

    h1 {
        font-size: 1.75em;
    }

    p {
        font-size: 0.9em;
    }
}
