/* Variables for Easy Customization */
:root {
    --primary-blue: #0a2342;
    --silver: #e0e0e0;
    --accent: #2ecc71;
    --text-dark: #333;
    --light-bg: #f8f9fa;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; color: var(--text-dark); line-height: 1.6; }
.container { width: 90%; max-width: 1100px; margin: auto; }

/* Header & Nav */
header { background: #fff; border-bottom: 3px solid var(--silver); padding: 10px 0; }
.top-nav { display: flex; justify-content: space-between; font-size: 0.8rem; color: #666; margin-bottom: 10px; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary-blue); letter-spacing: 1px; }
.logo span { color: #7f8c8d; font-weight: 300; }
nav ul { list-style: none; display: flex; gap: 25px; }
nav a { text-decoration: none; color: var(--primary-blue); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
nav a.active { color: var(--accent); }

/* Hero Section */
.hero { background: linear-gradient(rgba(10,35,66,0.9), rgba(10,35,66,0.9)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1000&q=80'); background-size: cover; color: white; padding: 80px 0; text-align: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 15px; }
.badge-container { margin-top: 20px; }
.badge { background: var(--accent); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; margin: 0 5px; }

/* Disclaimers */
.alert-box { background: #fff3cd; border: 1px solid #ffeeba; padding: 30px; border-radius: 8px; margin: 40px 0; }
.alert-box h3 { color: #856404; margin-bottom: 10px; }

/* Services */
.section-title { text-align: center; margin-bottom: 40px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--light-bg); padding: 30px; border-radius: 10px; border-bottom: 4px solid var(--silver); transition: 0.3s; }
.card:hover { transform: translateY(-5px); border-bottom: 4px solid var(--accent); }

/* Footer */
footer { background: var(--primary-blue); color: #fff; padding: 60px 0 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-grid h4 { color: var(--silver); margin-bottom: 20px; text-transform: uppercase; }
.footer-links ul { list-style: none; }
.footer-links a { color: #bdc3c7; text-decoration: none; font-size: 0.9rem; line-height: 2; }
.footer-bottom { border-top: 1px solid #1a3a5a; padding-top: 20px; text-align: center; font-size: 0.8rem; color: #7f8c8d; }

/* Page Specific */
.page-header { background: var(--silver); padding: 40px 0; }
.content-area { padding: 60px 0; }
.text-block h2 { margin: 30px 0 15px; color: var(--primary-blue); }