
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #08301e 0%, #0a3d25 100%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 600px;
    box-shadow: 0 0 50px rgba(197, 163, 94, 0.1);
    border-radius: 15px;
    background: rgba(10, 61, 37, 0.6); 
    backdrop-filter: blur(5px); 
    border: 1px solid rgba(197, 163, 94, 0.3); 
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 2rem;
}

h1 {
    font-family: 'Playfair Display', serif; 
    color: #c5a35e; 
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.divider {
    height: 2px;
    width: 60px;
    background-color: #c5a35e;
    margin: 1.5rem auto;
}

.contact {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #c5a35e;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    .logo {
        max-width: 180px;
    }
}