body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.company-logo {
    max-width: 80%;
    height: auto;
}

.maintenance-container {
    text-align: center;
    padding: 20px;
    background: #111;
    box-shadow: 0 6px 10px rgba(212, 175, 55, 0.5);
    border: 2px solid #d4af37;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1em;
    line-height: 1.6;
    max-width: 90%;
}

.maintenance-container p {
    margin: 10px 0;
}

.maintenance-container a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.maintenance-container a:hover {
    text-decoration: underline;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

iframe {
    border: 2px solid #d4af37;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(212, 175, 55, 0.5);
    width: 90%;
    max-width: 600px;
    height: 300px;
}

@media (min-width: 768px) {
    .maintenance-container {
        font-size: 1.1em;
        line-height: 1.8;
        max-width: 800px;
    }

    iframe {
        height: 450px;
    }
}