/*Header Start*/
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    header {
      background-color: white;
      border-top: 5px solid #A42A2B; /* Deep blue top border */
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 30px;
      position: relative;
      box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.3);
    }

    .logo {
      flex: 0 0 30%;
    }

    .logo img {
      max-height: 40px;
    }

    nav {
      flex: 0 0 70%;

    }

    .nav-links {
      display: flex;
      justify-content: flex-end;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: black;
      font-size: 16px;
      position: relative;
    }

    .nav-links a.active::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: #1c1e7c;
      bottom: -5px;
      left: 0;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 25px;
      height: 18px;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      width: 100%;
      background-color: #1c1e7c; /* Blue hamburger */
      border-radius: 2px;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 15px 30px;
        gap: 15px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      }

      .nav-links.active {
        display: flex;
      }

      .hamburger {
        display: flex;
      }

      nav {
        flex: 1;
        display: flex;
        justify-content: flex-end;
      }
    }
/*Header End*/