/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.maintenance-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Header styles */
header {
    margin-bottom: 30px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 150px;
    border: 3px solid #e8491d;
    border-radius: 50%;
    padding: 10px;
}

h1 {
    font-size: 2.5em;
    color: #35424a;
}

/* Main content styles */
main {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.content-box {
    margin-bottom: 30px;
}

.maintenance-icon img {
    max-width: 100px;
    margin-bottom: 20px;
}

.message {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.sub-message {
    color: #666;
}

.contact-box h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.contact-button {
    display: inline-block;
    background-color: #e8491d;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #c13a18;
}

/* Footer styles */
footer {
    margin-top: 30px;
    color: #666;
    font-size: 0.9em;
}

/* Responsive design */
@media (max-width: 600px) {
    .maintenance-container {
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }

    main {
        padding: 20px;
    }
}