:root {
    --primary-blue: #1b2668; /* Il blu del logo */
    --accent-red: #a31e32;   /* L'amaranto del logo */
    --text-dark: #333;
    --bg-light: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.maintenance-container {
    background: white;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 8px solid var(--primary-blue);
}

.logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 30px;
}

.icon-box {
    color: var(--accent-red);
    margin-bottom: 20px;
}

.feather-tool {
    width: 50px;
    height: 50px;
}

h1 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}

p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
    font-size: 0.9rem;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-info a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 480px) {
    .maintenance-container {
        padding: 20px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    h1 {
        font-size: 1.5rem;
    }
}