
    


    /* Shared header styles */
    /* .header {
        background-color: #003f2e;
        padding: 1rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
      } */


    .header {
        background-color: #dbe3e0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 40px;
        font-family: 'Arial', sans-serif;
        margin: 50px 0;
        margin-bottom: 0;
    }

    .header .dropdown-item.active, .header .dropdown-item:focus{
        background-color: white;
        color: black
    }

    .header .col-md-4{
        min-width: max-content;

    }
  
    .header .nav-link:hover, .nav-link:focus{
        color: #bcffbb !important;

    }
    .header .dropdown-menu{
        width: max-content;
        background-color: #dbe3e0;
        transform: translate(0px, 60px) !important;
        position: absolute;
        top: 70px;
        background: hsla(0, 0%, 100%, .9);
        box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
        padding-block: 20px;
        z-index: 1000;
        transition: opacity .3s ease-in-out;
        min-width: max-content
    }
  
    a{
        text-decoration: none !important;
    }

    .header .dropdown-menu li{
        margin: 6px 0;
    }

    .border-right{
        border-right: 2px solid white;
    }

    .nav-links li a {
    text-decoration: none;
    color: #0b4332;
    font-weight: 600;
    font-size: 15px;
    padding: 10px;
    }
      /* .nav-links .dropdown-menu a {
          color: white;
          margin-left: 0;
          padding-left: 0;
          text-decoration: none;
      } */
      .whatsapp-button {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background-color: transparent;
        border: 1px solid white;
        padding: 0.4rem 1rem;
        border-radius: 25px;
        color: white;
        font-size: 0.9rem;
        color: #003f2e;
  
      }
  
      span{
          color: #003f2e;
  
      }
  
      /* Mobile styles */
      .mobile-header {
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
      }
  
      .btn-dark{
          background-color: #0b4332 !important;
          color: #bcffbb !important;
          padding: 4px 21px !important;
          margin: 15px 25px 0px 16px !important;
      }

      .btn-dark svg{
        transform: scaleX(-1);

      }
  
      .hamburger,
      .close-btn {
        font-size: 2rem;
        color: white;
        background: none;
        border: none;
      }
  
      .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #003f2e;
        padding: 1.5rem;
        display: none;
        flex-direction: column;
        z-index: 9999;
      }
  
      .mobile-menu.active {
        display: flex;
      }
  
      .mobile-menu .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
      }
  
      .menu-links a {
        color: white;
        font-size: 1.25rem;
        margin-bottom: 1rem;
        text-decoration: none;
        display: block;
      }
  
      .menu-links a.dropdown-toggle::after {
        margin-left: 0.5rem;
      }
  
      .mobile-header .dropdown-menu {
        background-color: #004e3a;
      }
  
      .dropdown-menu a {
        color: white;
      }


  
      @media (max-width: 991px) {
        .mobile-menu.active .nav-links{
            display: block !important;
        }
        .mobile-menu.active .nav-link{
            font-size: 30px !important;
        }

        .dropdown-menu.show{
            display: block;
            background-color: #004e3a;
            padding: 25px;
          }
        .header {
          display: none !important;
        }

        .nav-links li a{
            color: white !important;
        }

        .whatsapp-button{
            border: 1px solid white !important;
            color: white !important;
        }

        .nav .nav-links{
            display: block !important;
        }
        .mobile-header {
          display: flex;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          padding: 27px;
          background-color: #004e3a;
        }
        .menu-links a{
          font-size: 2.1rem;
  
        }

        .whatsapp-button{
            margin: auto;
            font-size: 30px !important;

        }
      }
      @media (min-width: 992px) {
        .mobile-header,
        .mobile-menu {
          display: none !important;
        }
      
      }