:root {
    --primary: #1a2a6c;
    --gold: #b8860b;
    --text: #333;
    --light: #f4f4f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text); }

.container { max-width: 1100px; margin: auto; padding: 0 20px; }

header { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); padding: 20px 0; position: sticky; top: 0; z-index: 100; }

nav { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: bold; color: var(--primary); }
.logo span { color: var(--gold); }

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }

.hero { background: linear-gradient(rgba(26, 42, 108, 0.8), rgba(26, 42, 108, 0.8)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1350&q=80'); 
        height: 80vh; background-size: cover; display: flex; align-items: center; color: #fff; text-align: center; }

.hero h1 { font-family: 'Playfair Display', serif; font-size: 48px; margin-bottom: 20px; }

.btn-primary { background: var(--gold); color: #fff; padding: 12px 25px; text-decoration: none; border-radius: 5px; margin-right: 10px; display: inline-block; }
.btn-call { border: 2px solid var(--primary); color: var(--primary); padding: 8px 15px; text-decoration: none; border-radius: 5px; font-weight: bold; }

.section-title { text-align: center; margin: 50px 0; font-family: 'Playfair Display', serif; font-size: 32px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

.card { background: var(--light); padding: 30px; border-radius: 8px; transition: 0.3s; border-bottom: 4px solid transparent; }
.card:hover { transform: translateY(-5px); border-bottom: 4px solid var(--gold); }

footer { background: #111; color: #fff; padding: 50px 0; margin-top: 50px; }