* { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
.hero-gradient { background: linear-gradient(135deg, #001F3F 0%, #003366 100%); }
.accent-gold { color: #D4AF37; }
.nav-link { transition: all 0.3s ease; }
.nav-link:hover { color: #D4AF37; }
.service-card { transition: all 0.3s ease; border-left: 4px solid transparent; }
.service-card:hover { border-left-color: #D4AF37; transform: translateX(8px); }
.cta-button { background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%); transition: all 0.3s ease; }
.cta-button:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3); }
.primary-button { background-color: #001F3F; transition: all 0.3s ease; }
.primary-button:hover { background-color: #003366; }
.cookie-consent { animation: slideUp 0.3s ease-out; }
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
