body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    background: #4b9c56; 
    color: white; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}
.maintenance-container {
    max-width: 600px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
h1 {
    font-size: 32px;
    margin-bottom: 20px;
}
.status-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.contact {
    margin-top: 20px;
    font-size: 16px;
}
.contact a {
    color: #f3bd12;
    text-decoration: none;
    transition: color 0.2s;
}
.contact a:hover {
    color: white;
    text-decoration: underline;
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}
.button {
    background: #f3bd12; 
    color: white; 
    padding: 8px 15px; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 14px; 
    transition: all 0.2s ease; 
    text-transform: uppercase; 
    font-weight: bold; 
    min-height: 35px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    width: 110px; 
    text-align: center; 
    letter-spacing: 0.5px;
}
.button:hover {
    background: #e0a90f;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.footer {
    margin-top: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 480px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    .maintenance-container {
        margin: 0 15px;
    }
}