* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  header {
    background: #004d99;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  nav {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    align-items: center;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .nav-links {
    list-style: none;
    display: flex;
  }
  .nav-links li {
    margin: 0 10px;
  }
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  .hero {
    padding: 40px 20px;
  }
  .hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1.1em;
  }
  .btn {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: #004d99;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
  }
  section h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #004d99;
  }
  .service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .service-box {
    flex: 1;
    min-width: 250px;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
  }
  blockquote {
    font-style: italic;
    background: #eef;
    padding: 15px;
    border-left: 5px solid #004d99;
    margin-bottom: 20px;
  }
  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  form input, form textarea {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  button {
    padding: 10px;
    background: #004d99;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  header {
    background: #004d99;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  nav {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  .hero {
    padding: 40px 20px;
  }
  .hero h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1.1em;
  }
  .btn {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: #004d99;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
  }
  section h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #004d99;
  }
  .service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .service-box {
    flex: 1;
    min-width: 250px;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
  }
  blockquote {
    font-style: italic;
    background: #eef;
    padding: 15px;
    border-left: 5px solid #004d99;
    margin-bottom: 20px;
  }
  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  form input, form textarea {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  button {
    padding: 10px;
    background: #004d99;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
  }
  
  /* 📱 Mobile Responsive Design */
  @media (max-width: 768px) {
    nav {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .nav-links {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }
  
    .hero h1 {
      font-size: 1.8em;
    }
  
    .service-container {
      flex-direction: column;
    }
  
    .service-box {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.5em;
    }
  
    .btn {
      padding: 8px 16px;
    }
  
    form input, form textarea {
      font-size: 0.9em;
    }
  }
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #004d99;
      padding: 10px 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      width: 100%;
      padding: 10px 20px;
    }
  
    .nav-links a {
      width: 100%;
      display: block;
    }
  }
      