* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    background-color: #f5f1e9;
    color: #2c2c2c;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.maintenance-container {
    width: min(90%, 800px);
    padding: 20px;
}

.maintenance-box {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 25px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

.contact {
    margin-top: 35px;
    font-weight: bold;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #97b4dc;
    color: black;
    text-decoration: none;
    font-size: 1.05rem;
    transition: 0.3s;
    border-radius: 6px;
}

.button:hover {
    background-color: #7fa4d3;
}