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

body {
    font-family: Georgia, "Times New Roman", Times, serif;
    background: #f5f5dc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #2d5a27;
    position: relative;
    overflow: hidden;
}

.leaf {
    position: absolute;
    opacity: 0.15;
    font-size: 80px;
}

.leaf-1 { top: 10%; left: 5%; transform: rotate(-30deg); }
.leaf-2 { top: 5%; right: 10%; transform: rotate(45deg); }
.leaf-3 { bottom: 15%; left: 8%; transform: rotate(20deg); }
.leaf-4 { bottom: 10%; right: 5%; transform: rotate(-15deg); }

.maintenance-container {
    background: #fff;
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(45, 90, 39, 0.1);
    position: relative;
    z-index: 1;
}

.green-bar {
    height: 6px;
    background: #2d5a27;
}

.content-inner {
    padding: 50px 40px;
    text-align: center;
}

.nature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(45, 90, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.maintenance-content h1 {
    font-size: 28px;
    font-weight: normal;
    color: #2d5a27;
    margin-bottom: 20px;
}

.maintenance-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a7a55;
    margin-bottom: 12px;
}

.maintenance-content a {
    color: #2d5a27;
    text-decoration: underline;
}

.maintenance-content a:hover {
    text-decoration: none;
}

.site-name {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e8ebe8;
    font-size: 14px;
    color: #8a9a88;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (max-width: 480px) {
    .content-inner {
        padding: 40px 24px;
    }

    .maintenance-content h1 {
        font-size: 24px;
    }

    .maintenance-content p {
        font-size: 15px;
    }

    .leaf {
        font-size: 50px;
    }
}
