body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fcf6e4;
    color: #b0975c;
    text-align: center;
}

.maintenance-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    animation: fadeIn 1.5s ease-in-out;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: bold;
}

p {
    font-size: 18px;
    margin: 10px 0;
}

.contact-btn {
    display: inline-block;
    background-color: #b0975c;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.contact-btn:hover {
    background-color: #a08552;
}

.highlight {
    font-weight: bold;
    color: #a08552;
}
