/* Base styles for all maintenance pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    padding: 60px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.logo {
    max-width: 200px;
    margin-bottom: 40px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 300;
}

.message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.custom-message {
    background: #f8f8f8;
    border-left: 4px solid #333;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
}

.contact {
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.contact h3 {
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact a {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.contact a:hover {
    border-bottom-color: currentColor;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: scale(1.1);
}

.progress {
    background: #f0f0f0;
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    margin: 30px 0;
}

.progress-bar {
    height: 100%;
    width: 0%;
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@media (max-width: 600px) {
    .container {
        padding: 40px 30px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }
}