* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to right, #283048, #859398);
}

.maintenance-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-content {
    background-color: #ffffff;
    padding: 50px 35px;
    text-align: center;
    border-radius: 8px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.icon {
    font-size: 55px;
    display: block;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.3rem;
    color: #333333;
    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

small {
    font-size: 0.9rem;
    color: #999999;
}
