html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    color: #1f2245;
  }
  
  nav {
    background-color: #1f2245;
    padding: 1.5em 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav a {
    margin: 0 1em;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-block;
  }
  
  nav a:hover {
    color: #ec681b;
  }
  
  header {
    background: linear-gradient(to right, #1f2245, #31346b);
    color: #FFFFFF;
    padding: 2em 1em 3em;
    text-align: center;
    margin-top: 0;
    z-index: 0;
    position: relative;
  }
  
  header img {
    max-height: 200px;
    width: auto;
    max-width: 100%;
  }
  
  header h1 {
    font-size: 2.5em;
    margin-bottom: 0.3em;
  }
  
  header p {
    font-size: 1.4em;
    margin-top: 0.5em;
  }
  
  .cta {
    display: flex;
    gap: 1em;
    justify-content: center;
    margin-top: 2em;
    flex-wrap: wrap;
  }
  
  .cta a {
    background-color: #ec681b;
    color: white;
    padding: 0.75em 1.5em;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.2s;
    text-align: center;
  }
  
  .cta a:hover {
    background-color: #c95817;
    transform: translateY(-2px);
  }
  
  main {
    max-width: 900px;
    margin: 2em auto;
    padding: 0 1em;
    flex-grow: 1;
  }
  
  section {
    margin-bottom: 3em;
  }
  
  h2 {
    color: #ec681b;
  }
  
  ul {
    padding-left: 20px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  
  input, textarea {
    padding: 0.75em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
  }
  
  button {
    background-color: #ec681b;
    color: white;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.2s;
  }
  
  button:hover {
    background-color: #c95817;
    transform: translateY(-2px);
  }
  
  .contact-details {
    background-color: #f9f9f9;
    padding: 1em;
    border-left: 4px solid #ec681b;
    border-radius: 4px;
  }
  
  footer {
    text-align: center;
    padding: 2em 1em;
    background-color: #1f2245;
    font-size: 0.9em;
    color: #fff;
  }
  
  footer a {
    color: #ec681b;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.75em;
    width: 100vw;
    max-width: 100%;
    height: 1.5em;
    cursor: pointer;
    align-items: center;
    justify-content: flex-end;
    padding: .15em .3em;
  }
  
  .nav-links {
    display: flex;
    gap: 1em;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    header h1 {
      font-size: 2em;
    }
  
    header p {
      font-size: 1.2em;
    }
  
    .cta {
      flex-direction: column;
      align-items: center;
    }
  
    main {
      padding: 0 1em;
    }

    .menu-toggle {
        display: flex;
        box-shadow: none;
      }
    
      .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1f2245;
        z-index: 999;
        padding: 0em 0 1em 0;
      }
    
      .nav-links.active {
        display: flex;
      }
    
      nav {
  background-color: #1f2245;
  padding: 0.75em 1em; /* vertical and horizontal padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

      nav a {
        margin: 0.5em 0;
    }
    header {
      z-index: 0;
      position: relative;
    }
  }
  
  @media (max-width: 480px) {
    header h1 {
      font-size: 1.5em;
    }
  
    header p {
      font-size: 1em;
    }
  
    .cta a {
      width: 100%;
      max-width: 300px;
    }
  
    button {
      width: 100%;
      max-width: 300px;
      align-self: center;
    }
  }
  