/* Styles for the dropdown */
.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    border: 1px solid #e0e0e0;
    z-index: 1000;
  }
  
  /* Column layout */
  .dropdown-content {
    display: flex;
    gap: 20px;
  }
  
  /* Styles for links and sections */
  .dropdown-content div {
    display: flex;
    flex-direction: column;
  }
  
  .dropdown-content a {
    color: #007bff;
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 14px;
  }
  
  .dropdown-content a:hover {
    text-decoration: underline;
  }
  
  /* Divider style */
  .divider {
    width: 1px;
    background-color: #e0e0e0;
    height: auto;
  }
  
  /* Show dropdown on hover */
  .nav-item:hover .dropdown-menu-custom {
    display: block;
  }
  