/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f5f2;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, rgba(248, 245, 242, 0.97) 0%, rgba(248, 245, 242, 0.95) 100%), url('https://source.unsplash.com/random/1920x1080/?minimal,elegant');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d2d2d;
    letter-spacing: -0.5px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #555;
}

p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
}

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

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 3rem 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}