:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #2c3e50;
    --background-color: #f5f6fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--text-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 90%;
    margin: 20px;
}

.content {
    animation: fadeIn 1s ease-in;
}

.icon-wrapper {
    margin-bottom: 2rem;
}

.gear-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    position: relative;
    animation: rotate 4s linear infinite;
}

.gear-icon::before,
.gear-icon::after {
    content: '';
    position: absolute;
    background: var(--secondary-color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.gear-icon::before {
    width: 40%;
    height: 4px;
}

.gear-icon::after {
    width: 4px;
    height: 40%;
}

.company-name {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.address {
    font-size: 1.1rem;
    color: #666;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .maintenance-container {
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .company-name {
        font-size: 1.75rem;
    }

    .message {
        font-size: 1rem;
    }
}