body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f2; /* Soft spring green tint */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    max-width: 800px;
    width: 90%;
    text-align: center;
}

h1 {
    color: #2d5a27; /* Forest green */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.status-badge {
    background: #e74c3c;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    color: #444;
}

p {
    line-height: 1.6;
    color: #666;
}

/* Photo Section */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.photo-card {
    background: #eee;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-card img:hover {
    transform: scale(1.05);
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    padding-top: 20px;
}