html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      background-color: #f9f9f9;
      color: #333;
    }

    header {
      background-color: #0a3d62;
      color: white;
      padding: 20px 0;
      text-align: center;
    }

    nav {
      background-color: #0a3d62;
      padding: 10px 0;
      text-align: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }

    .hero {
  background: url('https://images.unsplash.com/photo-1617181514610-94c51e65d479?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
    .hero h1 {
      font-size: 3em;
      background-color: rgba(10,61,98,0.7);
      padding: 20px;
    }

    .container {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section {
      margin-bottom: 60px;
    }

    .section h2 {
      color: #0a3d62;
      margin-bottom: 20px;
    }

    .services {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .service {
      flex: 1 1 30%;
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    footer {
      background-color: #0a3d62;
      color: white;
      text-align: center;
      padding: 20px 0;
      margin-top: 40px;
    }

    @media (max-width: 768px) {
      .services {
        flex-direction: column;
      }
    }
