:root { --primary: #1a2a6c; --accent: #f2a900; --text: #333; --light: #f8f9fa; --white: #ffffff; }
* { margin: 0; padding: 0; box-box: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; background: var(--white); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { padding: 20px 0; background: var(--white); border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 25px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.hero { padding: 100px 0; background: linear-gradient(rgba(26,42,108,0.8), rgba(26,42,108,0.8)), url('images/hero.jpg') center/cover; color: var(--white); text-align: center; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.btn { display: inline-block; padding: 15px 35px; background: var(--accent); color: var(--primary); text-decoration: none; font-weight: bold; border-radius: 5px; border: none; cursor: pointer; transition: 0.3s; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.services { padding: 80px 0; background: var(--light); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.card { background: var(--white); padding: 40px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.card:hover { transform: translateY(-10px); }
.trust-layer { padding: 40px 0; background: #eee; font-size: 0.85rem; border-top: 1px solid #ddd; }
footer { padding: 60px 0; background: var(--primary); color: var(--white); text-align: center; }
.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; background: var(--white); padding: 20px; box-shadow: 0 0 20px rgba(0,0,0,0.2); z-index: 2000; border-radius: 10px; display: none; }
.form-group { margin-bottom: 15px; text-align: left; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
@media (max-width: 768px) { .nav-links { display: none; } .hero h1 { font-size: 2.2rem; } }