/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f9fbfc;
    color: #222;
    line-height: 1.6;
    font-size: 16px;
  }
  
  /* ===== Layout Helpers ===== */
  .wrap {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* ===== Header ===== */
  .site-header {
    background: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    border-bottom:1px solid #003d66;
  }
  
  .site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .logo img {
    display: block;
  }
  
  .main-nav a {
    color: #007acc;
    text-decoration: none;
    margin: 0 0.75rem;
    font-weight: 500;
  }
  
  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    text-decoration: underline;
  }
  
  .top-cta a {
    background: #fff;
    color: #007acc;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .top-cta a:hover {
    background: #eaf6fb;
  }
  
  /* ===== Headings ===== */
  h1, h2, h3 {
    color: #007acc;
    margin-bottom: 0.5em;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    margin-top: 1.5rem;
  }
  
  /* ===== Buttons ===== */
  .btn {
    display: inline-block;
    padding: 0.6rem 1rem;
    background-color: #007acc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }
  
  .btn:hover {
    background-color: #005c99;
  }
  
  /* ===== Lists ===== */
  ul {
    margin: 0.5rem 0 1rem 1.25rem;
  }
  
  ul li {
    margin-bottom: 0.5rem;
  }
  
  /* ===== Contact List ===== */
  .contact-list li {
    list-style: none;
    margin: 0.5rem 0;
  }
  
  .contact-list a {
    color: #007acc;
    text-decoration: none;
  }
  
  .contact-list a:hover {
    text-decoration: underline;
  }
  
  /* ===== Map Frame ===== */
  .map-frame iframe {
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  /* ===== Forms ===== */
  .contact-form {
    display: grid;
    gap: 0.8rem;
    max-width: 500px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccddee;
    border-radius: 4px;
  }
  
  .contact-form button {
    justify-self: start;
  }
  
  .note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
  }
  
  /* ===== Footer ===== */
  .site-footer {
    background-color: #003d66;
    color: #fff;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    margin-top: 2rem;
  }
  
  .site-footer a {
    color: #fff;
    text-decoration: underline;
  }
  
  .site-footer .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 768px) {
    .main-nav {
      margin-top: 0.5rem;
    }
    
    .site-footer .wrap {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  