body {
    margin: 0;
    
  }

  .header-container {
    width: 100%;
    background-color: #007bff;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px;
    color: white;
  }

  .header .logo {
    font-size: 1.5em;
    font-weight: bold;
    padding-left: 20px;
  }

  .header .menu {
    display: flex;
    gap: 20px;
    position: relative;
    margin-top: -10px;
    padding-right: 20px;
  }

  .header .menu-item {
    position: relative;
    font-weight: bold;
  }

  .header .menu-item a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }

  .header .menu-item a:hover {
    color: #ffffff;
  }

  .header .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #007bff;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .header .dropdown a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
  }

  .header .dropdown a:hover {
    background-color: #ffffff;
    color: #007bff;
  }

  .header .menu-item:hover .dropdown {
    display: block;
  }

  .hamburger {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .header .menu {
      display: none;
      flex-direction: column;
      align-items: flex-end; /* Align text to the right */

      background-color: #52adf2;
      padding: 10px;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
    }
 
    .hamburger {
      display: block;
    }

    .header .menu-item {
      position: static;
      padding-right: 50px;
    }

    .header .dropdown {
      position: static;
      box-shadow: none;
    }
  }