/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Matches the HTML font link */
    background-color: #f4f6f8;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container Styling */
.maintenance-container {
    width: 100%;
    padding: 20px;
}

.content-box {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Icon Styling */
.maintenance-icon {
    width: 80px;
    height: 80px;
    color: #3498db; /* Change this color to match your brand */
    margin-bottom: 20px;
    animation: spin 4s linear infinite; /* Optional: Slow spin animation */
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Button Styling */
.contact-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background-color: #3498db; /* Match brand color */
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background-color: #2980b9;
}

/* Optional Animation for the Gear Icon */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    .content-box {
        padding: 30px 20px;
    }
}