* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
}

.container {
    background-color: #ffffff;
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: fadeIn 1s ease-in-out forwards;
}

.icon {
    margin-bottom: 25px;
    display: inline-block;
}

.icon svg {
    width: 60px;
    height: 60px;
    color: #007bff;
    animation: pulse 2s infinite ease-in-out;
}

h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #2c3e50;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #7f8c8d;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-text {
    margin-top: 40px;
    font-size: 0.9em;
    color: #95a5a6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.3em;
    }
    p {
        font-size: 1em;
    }
    .container {
        padding: 30px 40px;
    }
    .icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.2em;
    }
    .container {
        padding: 25px 30px;
    }
    .icon svg {
        width: 45px;
        height: 45px;
    }
}

.maintenance-info {
    font-size: 1.05em;
    margin-top: 25px;
    color: #2980b9;
    font-weight: bold;
}

.footer-text {
    margin-top: 40px;
    font-size: 0.9em;
    color: #95a5a6;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}
