body {
    font-family: Arial, sans-serif;
    background-color: #eef1f5;
    margin: 0;
    padding: 20px;
  }

  .container {
    max-width: 960px;
    margin: auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  h1, h2 {
    color: #003d66;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    border-radius: 4px;
    width: 100%;
  }

  textarea {
    resize: vertical;
    height: 120px;
  }

  button {
    background-color: #004d80;
    color: #fff;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
  }

  .contact-info, .business-hours, .social-links {
    margin-bottom: 20px;
  }

  .social-links a {
    margin-right: 10px;
    text-decoration: none;
    color: #004d80;
    font-weight: bold;
  }

  iframe {
    width: 100%;
    height: 300px;
    border: 0;
    margin-bottom: 30px;
  }
  * {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  header {
      color: white;
    padding: 80px 20px;
    text-align: center;
  }
  header h1 {
    font-size: 2.5em;
  }
  nav {
    background: #004080;
    text-align: center;
    padding: 10px 0;
  }
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
  }
  nav a:hover {
    text-decoration: underline;
  }
  .container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  section {
    margin-bottom: 40px;
  }
  h2 {
    color: #004080;
    margin-bottom: 15px;
  }
  .card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .card {
    background: #f9f9f9;
    padding: 15px;
    flex: 1 1 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
  }
  .card:hover {
    transform: scale(1.03);
  }
  .card img, .card video {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
  }
  footer {
    background: #004080;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
  }
  @media (max-width: 768px) {
    header h1 {
      font-size: 1.8em;
    }
    nav a {
      display: block;
      margin: 10px 0;
    }
    .card-grid {
      flex-direction: column;
    }
  }

  footer a {
    color: white;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  /* Navbar styles */
.navbar {
    background: #004080;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .navbar-brand {
    font-size: 1.4em;
    color: white;
    font-weight: bold;
  }
  
  .menu-toggle {
    background: none;
    border: none;
    font-size: 1.8em;
    color: white;
    cursor: pointer;
    display: none;
  }
  
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      margin-top: 10px;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links a {
      padding: 10px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
  }
  