body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maintenance-container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.warning-icon {
    font-size: 5rem;
    color: #ffc107;
    animation: pulse 2s infinite;
    margin-bottom: 1rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

h1 {
    color: #dc3545;
    margin-bottom: 1.5rem;
}

.maintenance-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6c757d;
}

.countdown {
    font-size: 2.5rem;
    font-family: monospace;
    color: #343a40;
    margin: 2rem 0;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #495057;
}

.fa-phone {
    margin-right: 0.5rem;
    color: #28a745;
}

.fa-phone:before {
    content: "\f095";
}