 /* Mega Menu 樣式 */
  .mega-menu {
    position: static !important;
  }
  
  .mega-menu .dropdown-menu {
    max-width: 1200px; /* Or any desired width */
    right: 0;
    top: 53px;
    padding: 20px;
    background: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0;
    margin-top: 0;
    margin-left: auto; /* Add these two lines to center */
    margin-right: auto;
  }
  
  /* Container for Mega Menu Content */
  .mega-menu-container {
    margin: 0 auto;
  }

  .mega-menu-content {
    display: flex;
  }
  
  .mega-menu-column {
    flex: 1;
    padding: 0 15px;
  }
  
  .mega-menu-column h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }
  
  .mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mega-menu-column ul li {
    margin-bottom: 8px;
  }
  
  .mega-menu-column ul li a {
    color: #666;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
  }
  
  .mega-menu-column ul li a:hover {
    color: #007bff;
    padding-left: 5px;
  }
  
  .mega-menu-featured {
    border-left: 1px solid #eee;
    padding-left: 30px !important;
  }
  
  .mega-menu-featured img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  .mega-menu-featured h6 {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .mega-menu-featured p {
    font-size: 13px;
    color: #777;
  }
  
  /* 響應式調整 */
  @media (max-width: 992px) {
    .mega-menu .dropdown-menu {
      position: static !important;
      transform: none !important;
      width: 100%;
		  left: 0; /* Reset left to 0 for full width on smaller screens */
    }
    
    .mega-menu-content {
      flex-direction: column;
    }
    
    .mega-menu-column {
      margin-bottom: 20px;
    }
    
    .mega-menu-featured {
      border-left: none;
      border-top: 1px solid #eee;
      padding-left: 15px !important;
      padding-top: 20px;
      margin-top: 20px;
    }
  }

  /* Mobile Menu Styles (Example - Adjust as needed) */
  @media (max-width: 768px) {
    .navbar-nav {
      display: block; /* Hide the desktop menu */
    }

    .navbar-toggler {
      display: block !important; /* Ensure the toggler is visible */
    }
  }

  /* Off-Canvas Menu Styles */
  .offcanvas {
    background-color:#1F385F; 
    color: white;
  }

  .offcanvas-title {
    color: white;
  }

  .offcanvas-body .navbar-nav .nav-link {
    color: white;
  }

  .offcanvas-body .navbar-nav .nav-link:hover {
    color: #007bff;
  }

  .btn-close-white { /* Style the close button */
    color: white !important;
  }
  
  
  .slogan{font-size:20px;}
   @media (max-width: 768px) {
    .slogan{font-size:15px;}
  }