/*
Top Bar
*/

    .header {
    display: flex;
    align-items: center;      
    justify-content: space-between;
    padding: 15px 20px;
    height: 105px;
    box-sizing: border-box;
    position: relative;
    }

    .logo img {
      width: 300px;
      height: auto;
      display: block;
      margin: 0;
    }
    .tabs {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 70px;
      font-size: 16px;
      letter-spacing: 0.03em;
    }
    .tabs a {
      color: #000;
      text-decoration: none;
    }
    .tabs a:hover,
    .footer-links a:hover,
    .client-portal:hover {
      background-color: #007bff; 
      color: white;
    }
    .client-portal {
      font-size: 16px;
      text-decoration: none;
      color: #000;
      border: none;
      background: none;
      cursor: pointer;
      font-family: inherit;
      margin: 0;
      padding: 0;
    }

    .mobile-menu{
  display: none;
}

.hamburger {
  display: none;
}

    /*
    Footer
    */

    .footer {
      border-top: 1px solid #ccc;
      padding: 20px;
      font-size: 16px;
      letter-spacing: 0.03em;
      text-align: left;
      display: flex;
      justify-content: flex-start;
    }
    .footer-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 70px;
    }
    .footer a {
      text-decoration: none;
      color: #000;
      display: block;
      margin: 5px 0;
    }

    .disclaimer {
      max-width: 50%;
      margin: 0 auto; 
      font-size: 16px;
       transform: translateX(-100px);
    }


    

    /*
    Mobile
    */


    
   



     




    
@media (max-width: 768px) {
    

/* Hide original tabs and client portal on mobile */
.tabs,
.client-portal {
  display: none;
}

/* Make header a flex container with space between logo and hamburger */
.header {
  padding: 15px 20px;
  height: 60px; /* smaller height on mobile */
  position: relative;
  justify-content: space-between;
}

/* Logo on left, smaller width */
.logo img {
  width: 250px !important;
  height: auto;
  margin-top: 20px;
}

/* Hamburger menu button */
.hamburger {
  display: block;
  width: 50px;
  height: 25px;
  cursor: pointer;
  position: relative;
  z-index: 2000;
}

.hamburger div {
  background-color: #000;
  height: 3px;
  margin: 9px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Dropdown menu - hidden by default */
.mobile-menu {
  display: none;
  position: absolute;
  top: 60px; /* below header */
  right: 20px;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  width: 180px;
  z-index: 1500;
  flex-direction: column;
  padding: 10px 0;
}

/* Show menu when active */
.mobile-menu.active {
  display: flex;
}

/* Links styling inside mobile menu */
.mobile-menu a {
  padding: 12px 20px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid #eee;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  background-color: #007bff;
  color: white;
}



.footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px; /* smaller gap */
    margin-bottom: 15px;
  }

  .footer a {
    display: inline-block; /* prevents huge clickable box */
    padding: 4px 0;
  }

  .disclaimer {
    max-width: 99%; /* take up more width on mobile */
    transform: translateX(+0px);
  }

  


 


}  












