
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: #333; }
header { background: #fff; padding: 1rem 5%; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: bold; color: #2c3e50; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 2rem; }
nav ul li a { text-decoration: none; color: #333; font-weight: 500; transition: 0.3s; }
nav ul li a:hover { color: #e67e22; }

.hero { height: 60vh; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpg') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 1rem; }
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; }
.btn { background: #e67e22; color: #fff; padding: 0.8rem 2rem; text-decoration: none; border-radius: 5px; transition: 0.3s; }
.btn:hover { background: #d35400; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); padding: 4rem 5%; gap: 2rem; background: #f9f9f9; }
.feature { text-align: center; padding: 2rem; background: #fff; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.feature img { width: 100%; height: 200px; object-fit: cover; border-radius: 5px; margin-bottom: 1.5rem; }
.feature h3 { margin-bottom: 1rem; color: #2c3e50; }

footer { background: #2c3e50; color: #fff; padding: 3rem 5%; text-align: center; }
.footer-content p { margin-bottom: 0.5rem; font-size: 0.9rem; opacity: 0.8; }
.legal-links a { color: #fff; text-decoration: none; font-size: 0.8rem; opacity: 0.6; transition: 0.3s; }
.legal-links a:hover { opacity: 1; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    nav ul { display: none; }
}
