:root { --green: #bfd3b9; --dark: #333; --light: #f4f4f4; }
body { font-family: 'Open Sans', sans-serif; margin: 0; color: var(--dark); line-height: 1.6; background: #fafafa; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }
nav { background: white; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
.nav-links a { margin-left: 20px; text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--green); }
.container { max-width: 1100px; margin: auto; padding: 60px 20px; }
.btn { text-transform: uppercase; letter-spacing: 1px; font-weight: bold; border-radius: 5px; display: inline-block; transition: transform 0.2s; }
.btn:hover { transform: translateY(-2px); }
footer { background: var(--dark); color: white; text-align: center; padding: 60px 20px; }
img { max-width: 100%; height: auto; }
@media (max-width: 768px) {
    nav { flex-direction: column; gap: 10px; }
    .hero h1 { font-size: 2.5rem; }
}
