/* Basic Reset and Fonts */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f9; /* Light background */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Main Container Styling */
.maintenance-container {
    max-width: 700px;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 40px 30px;
    box-sizing: border-box;
}

/* Header and Branding */
header h1 {
    color: #004a99; /* Primary Elevator Blue (Adjust to your brand color) */
    font-size: 1.8em;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Icon Section */
.icon-section {
    margin-bottom: 30px;
}

.wrench-icon {
    font-size: 60px;
    color: #ff9900; /* Safety/Warning Orange */
}

/* Main Content */
.content-box h2 {
    color: #222;
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 10px;
}

.sub-heading {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 25px;
}

.content-box p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ETA Box (Highlighting the timeline) */
.eta-box {
    background-color: #e6f3ff; /* Light blue box for timeline */
    border-left: 5px solid #007bff;
    padding: 15px;
    margin: 30px 0;
    border-radius: 8px;
}

.eta-box p {
    margin: 5px 0;
}

.eta-box .time {
    font-size: 1.6em;
    font-weight: bold;
    color: #004a99;
}

/* Contact Info */
.contact-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-info h3 {
    color: #222;
    margin-bottom: 10px;
}

.phone-number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4em;
    font-weight: bold;
    color: #007bff;
}

.phone-number .material-symbols-outlined {
    margin-right: 10px;
    font-size: 1.2em;
}

.phone-number a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number a:hover {
    color: #004a99;
}

/* Footer */
footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #999;
}

footer nav a {
    color: #999;
    text-decoration: none;
    margin: 0 10px;
}

footer nav a:hover {
    color: #004a99;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .maintenance-container {
        padding: 20px 15px;
    }
    
    .content-box h2 {
        font-size: 1.8em;
    }
    
    .eta-box .time {
        font-size: 1.4em;
    }
}