
    :root { --primary: #004786; --accent: #009dff; --bg: #f4f4f4; --text: #333; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: var(--text); margin: 0; background-color: var(--bg); }
    .container { max-width: 1000px; margin: 0 auto; padding: 20px; background: #fff; min-height: 100vh; }
    .header { display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--primary); padding-bottom: 10px; flex-wrap: wrap; }
    .nav { display: flex; gap: 15px; margin: 20px 0; background: var(--primary); padding: 10px; border-radius: 4px; flex-wrap: wrap; }
    .nav a { color: #fff; text-decoration: none; font-weight: bold; }
    .row { display: grid; grid-template-columns: 1fr 300px; gap: 30px; margin-top: 20px; }
    .sidebar { background: #f9f9f9; padding: 15px; border-radius: 5px; }
    .footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #ccc; font-size: 0.85em; text-align: center; }
    .img-fluid { max-width: 100%; height: auto; }
    h1 { color: var(--primary); }
    .contactHead h1 { font-size: 1.25rem; }
    @media (max-width: 768px) { .row { grid-template-columns: 1fr; } .header { justify-content: center; text-align: center; } }
