html {
  height: 100%;
  box-sizing: border-box;
  }
  *, *:before, *:after {
  box-sizing: border-box;
  }
  body {
  margin: 0;
  padding: 0;
  }
  body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  color: #333;
  }
  .container {
  display: flex;
  flex-grow: 1;
  width: 100%;
  }
  .column {
  padding: 0;
  }
  .left-column,
  .right-column {
  display: none;
  }
  .middle-column {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  position: relative;
  background-color: #F3F3F1;
  align-items: flex-start;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  }
  .middle-column:hover {
  scrollbar-color: #42ACD1 #E0E0E0;
  }
  .middle-column::-webkit-scrollbar {
  width: 1px;
  }
  .middle-column::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0px;
  transition: background-color 0.2s ease-in-out;
  }
  .middle-column::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  transition: background-color 0.2s ease-in-out;
  }
  .middle-column:hover::-webkit-scrollbar-track {
  background: #E0E0E0;
  }
  .middle-column:hover::-webkit-scrollbar-thumb {
  background-color: #42ACD1;
  }
  #main-content-static-hero {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  }
  #main-content-vegas-slideshow {
  height: 100vh;
  width: 100%;
  position: inherit;
  margin-top: -200px;
  overflow: hidden;
  }
  .main-content {
  position: relative;
  padding-top: 100vh;
  }
  .main-hero-element {
  position: relative;
  }
  .vegas-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  width: auto;
  min-width: 320px;
  min-height: 320px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(66, 172, 209, 0.3), rgba(66, 172, 209, 0.7));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  }
  .overlay-logo {
  display: block;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
  }
  .overlay-description {
  font-family: "Montserrat", sans-serif;
  color: #F3F3F1;
  font-size: 2em;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
  }
  .nav-button {
  position: sticky;
  top: 5px;
  float: right;
  margin: 0 10px 10px 10px;
  z-index: 1001;
  padding: 10px;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .nav-button-icon {
  width: 28px;
  height: 20px;
  position: relative;
  }
  .nav-button-line {
  display: flex;
  position: absolute;
  height: 1.5px;
  width: 100%;
  background-color: #42ACD1;
  border-radius: 1.5px;
  left: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .nav-button-line-top { top: 0; }
  .nav-button-line-middle { top: 50%; transform: translateY(-50%); }
  .nav-button-line-bottom { bottom: 0; }
  .nav-button.is-active .nav-button-line-top { transform: translateY(9px) rotate(45deg); }
  .nav-button.is-active .nav-button-line-middle { opacity: 0; }
  .nav-button.is-active .nav-button-line-bottom { transform: translateY(-9px) rotate(-45deg); }
  .language-switcher {
  position: sticky;
  top: 10px;
  float: right;
  margin: 0 5px 10px 0;
  z-index: 1001;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }
  .language-switcher-button {
  position: sticky;
  margin-top: 0px;
  z-index: 1001;
  display: inline-block;
  padding: 8px 12px;
  box-sizing: border-box;
  color: #42ACD1;
  background-color: #F3F3F1;
  border: 1.5px solid #42ACD1;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  border-radius: 3px;
  }
  .language-switcher-button:hover {
  background-color: #F3F3F1;
  }
  .current-lang {
  margin-right: 8px;
  }
  .lang-arrow {
  font-size: 1.2em;
  transition: transform 0.3s ease;
  }
  .language-switcher-button[aria-expanded="true"] .lang-arrow {
  transform: rotate(360deg);
  }
  .language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #F3F3F1;
  width: 90px;
  list-style: none;
  margin: 3px 0 0 0;
  padding: 0;
  z-index: 1002;
  text-align: left;
  }
  .language-dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #42ACD1;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  }
  .language-dropdown li a:hover {
  background-color: rgba(66, 172, 209, 0.2);
  color: #42ACD1;
  }
  .logo {
  width: 70%;
  max-width: 180px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  margin-top:35px;
  }
  .button {
  display: inline-block;
  background-color: #42ACD1;
  color: #F3F3F1;
  border: 1.5px solid #42ACD1;
  padding: 10px 20px;
  text-decoration: none;
  margin-bottom: 15px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  min-width: 180px;
  transition: background-color 0.3s ease, color 0.3s ease;
  }
  .button:last-child {
  margin-bottom: 0;
  }
  .button:hover {
  background-color: #F3F3F1;
  color: #42ACD1;
  border-color: #42ACD1;
  }
  .button_w {
  display: inline-block;
  color: #42ACD1;
  background-color: #F3F3F1;
  border: 1.5px solid #42ACD1;
  padding: 10px 20px;
  text-decoration: none;
  margin-bottom: 15px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  min-width: 180px;
  transition: background-color 0.3s ease, color 0.3s ease;
  }
  .button_w:last-child {
  margin-bottom: 0;
  }
  .button_w:hover {
  color: #F3F3F1;
  background-color: #42ACD1;
  border-color: #F3F3F1;
  }
  .button_y {
  display: inline-block;
  color: #F3F3F1;
  background-color: #B39354;
  border: 1.5px solid #B39354;
  padding: 10px 20px;
  text-decoration: none;
  margin-bottom: 15px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  min-width: 180px;
  transition: background-color 0.3s ease, color 0.3s ease;
  }
  .button_y:last-child {
  margin-bottom: 0;
  }
  .button_y:hover {
  color: #B39354;
  background-color: #F3F3F1;
  border-color: #B39354;
  }
  .vacancy-check-button {
  position: sticky;
  top: 10px;
  float: left;
  margin: 0 5px 10px 15px;
  z-index: 1001;
  display: inline-block;
  padding: 8px 18px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #42ACD1;
  color: #F3F3F1;
  border: 1.5px solid #F3F3F1;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  }
  .vacancy-check-button:hover {
  background-color: #F3F3F1;
  color: #42ACD1;
  border: 1.5px solid #42ACD1;
  }
  .ig-icon {
  font-size: 32px;
  font-weight: 100;;
  color: #42ACD1;
  position: sticky;
  top: 3px;
  float: left;
  margin: 0 8px 10px 5px;
  z-index: 1001;
  padding: 8px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: center;
  }
  a.ig-icon {
  text-decoration: none;
  }
  .menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F3F3F1;
  color: #42ACD1;
  z-index: 1000;
  padding-top: 60px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95) translateY(-10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s linear 0.3s;
  }
  .menu.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  transition-delay: 0s;
  }
  .menu .menu-logo-link {
  display: block;
  margin-bottom: 20px;
  line-height: 0;
  margin-top: 15px;
  }
  .menu .menu-divider {
  width: 50%;
  height: 5px;
  background-color: #42ACD1;
  margin: 0 auto 20px auto;
  opacity: 0.7;
  }
  .menu .menu-logo-link img {
  max-width: 160px;
  height: auto;
  }
  .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  }
  .menu ul li:last-child {
  padding-bottom: 70px;
  }
  .menu ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7em;
  line-height: 2;
  color: #42ACD1;
  text-decoration: none;
  padding: 0px 30px;
  display: block;
  transition: background-color 0.3s ease;
  font-weight: 400;
  ;
  }
  .menu span {
  font-family: "noto-sans", sans-serif;
  font-size: 0.3em;
  font-weight: 100;
  font-style: normal;
  line-height: 0.6;
  letter-spacing: 0.25em;
  }
  .menu .small {
  font-size: 0.8em;
  font-weight: 100; 
  line-height: 1.3;
  opacity: 50%;
  }
  .menu ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  }
  .menu .close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: transparent;
  color: #42ACD1;
  border: none;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  padding: 5px;
  line-height: 1;
  z-index: 1002;
  }
  @media (min-width: 768px) {
  .menu ul li a {
  font-size: 1.8em;
  }
  .menu span {
  font-size: 0.2em;
  }
  .menu .small {
  font-size: 0.8em;
  }
  .left-column,
  .right-column {
  flex: 1;
  overflow-y: auto;
  height: 100vh;
  display: flex;
  color: #F3F3F1;
  }
  .left-column{
  height: 100vh;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #42ACD1;
  }
  .right-column{
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: hidden;
  background-color: #F3F3F1;
  }
  .right-column-top {
  flex-basis: 50%;
  width: 100%;
  overflow: hidden;
  position: relative;
  }
  .right-column-bottom{
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #004862;
  }
  .vertical-divider-blue {
  width: 1px;
  height: 120px;
  background-color: #42ACD1;
  margin-top: 10px;
  margin-bottom: 10px;
  }
  .vertical-divider {
  width: 1px;
  height: 120px;
  background-color: #F3F3F1;
  margin-top: 10px;
  margin-bottom: 10px;
  }
  .column.left-column a.nav-link {
  display: block;
  text-decoration: none;
  color: inherit;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6em;
  line-height: 1;
  margin-bottom: 20px;
  font-weight:200;
  }
  .column.left-column a:hover {
  opacity: 0.8;
  }
  .column.left-column a.nav-link p {
  margin: 0;
  }
  .column.left-column a.nav-link span {
  display: block;
  font-family: "noto-sans", sans-serif;
  font-size: 0.3em;
  font-weight: 100;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.25em;
  margin-top: 0.1em;
  }
  .middle-column {
  flex: 1;
  }
  .menu {
  left: calc(100vw / 3);
  width: calc(100vw / 3);
  }
  }
  .site-footer {
  background-color: #F3F3F1;
  text-align: center;
  padding: 25px 15px 70px;
  margin-top: 40px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  }
  .site-footer p {
  margin: 0px 0px 40px 0px;
  font-size: 0.9em;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #004862;
  }
  .site-footer a {
  text-decoration: none;
  }
  .footer-wave-divider {
  display: block;
  width: 80%;
  height: auto;
  margin: 15px auto 60px auto;
  }
  .footer-wave-divider path {
  stroke: #42ACD1;
  stroke-width: 0.5;
  fill: none;
  }
  .site-footer .logo {
  margin: 0px 0px 50px 0px;
  }
  .site-footer p.copyright {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 0.8em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #004862;
  }
  .site-footer p.copyright a,
  .site-footer p.copyright a:link,
  .site-footer p.copyright a:visited {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 0.9em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #004862;
  }
  .footer-map {
  box-sizing: border-box;
  margin-bottom: 40px;
  border:none;
  }
  .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.3em;
  line-height: 0.6;
  color: #42ACD1;
  text-decoration: none;
  padding: 0px 30px;
  display: block;
  transition: background-color 0.3s ease;
  font-weight: 600;
  }
  .section-title-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5em;
  line-height: 1em;
  color: #42ACD1;
  text-decoration: none;
  padding: 0px 30px;
  display: block;
  }
  .section-subtitle-large {
  font-family: "noto-sans", sans-serif;
  font-size: 0.2em;
  font-weight: 100;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.25em;
  color: #42ACD1;
  padding-left: 25px;
  margin-top: -20px;
  margin-bottom: 40px;
  }
  .section-subtitle {
  font-family: "noto-sans", sans-serif;
  font-size: 0.3em;
  font-weight: 100;
  font-style: normal;
  line-height: 0.6;
  letter-spacing: 0.25em;}
  .description{
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 0.9em;
  line-height: 2.5;
  letter-spacing: 0.1em;
  color: #004862;
  padding-left: 25px;
  padding-right: 25px;
  }
  .description-left{
  padding-top: 30px;
  padding-bottom: 50px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 0.9em;
  line-height: 2.5;
  letter-spacing: 0.1em;
  color: #004862;
  }
  .button-wrapper {
  line-height: normal;
  margin-top: 20px;
  }
  .button-wrapper.stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  }
  .button-wrapper.stacked .button,
  .button-wrapper.stacked .button_w {
  margin-bottom: 0;
  }
  .ig-icon.invert-color {
  color: #F3F3F1;
  }
  .nav-button.invert-color .nav-button-line {
  background-color: #F3F3F1;
  }
  .center{
  text-align:center;
  }
  .white{
  color:#F3F3F1
  }
  .blue-background{
  background-color: #42ACD1;
  color: #F3F3F1;
  }
  .rotating-text-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 25px;
  overflow: hidden;
  }
  .rotating-text-badge {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  }
  .rotating-text-badge-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.3em;
  color: #B39354;
  z-index: 3;
  }
  .rotating-text-badge::before {
  display: none;
  }
  .rotating-text-badge-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  }
  .rotating-text-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: spin-svg-text 20s linear infinite;
  z-index: 2;
  }
  .rotating-text-svg .circular-text {
  font-size: 0.6em;
  font-weight: 400;
  fill: #B39354;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  }
  .rotating-text-badge-text-items,
  .rotating-text-badge-text-items .text-item,
  .rotating-text-badge-text-items .text-item.active {
  display: none;
  }
  @keyframes spin-circle {
  0% {
  transform: rotate(0deg);
  }
  100% {
  transform: rotate(360deg);
  }
  }
  @keyframes spin-svg-text {
  0% {
  transform: rotate(0deg);
  }
  100% {
  transform: rotate(360deg);
  }
  }
  .all-day-dining-swiper {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  }
  .all-day-dining-swiper .swiper-slide {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #F3F3F1;
  box-sizing: border-box;
  }
  .all-day-dining-swiper .swiper-slide .slide-content h3 {
  color: #F3F3F1;
  font-weight: 200;
  }
  .swiper-slide .slide-content a h3,
  .swiper-slide .slide-content a:visited h3 {
  color: #F3F3F1;
  text-decoration: none;
  }
  .all-day-dining-swiper .swiper-button-prev,
  .all-day-dining-swiper .swiper-button-next {
  color: #ffffff;
  }
  .all-day-dining-swiper .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 0.6;
  transition: opacity 0.3s, background-color 0.3s;
  }
  .all-day-dining-swiper .swiper-pagination-bullet-active {
  background-color: #B39354;
  opacity: 1;
  }
  .all-day-dining-swiper .swiper-pagination {
  position: relative;
  bottom: 10px;
  }
  .all-day-dining-swiper .swiper-slide .slide-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
  z-index: 1;
  }
  .all-day-dining-swiper .swiper-slide .slide-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  }
  .all-day-dining-swiper .swiper-slide .slide-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5em;
  }
  .all-day-dining-swiper .swiper-slide .slide-content h3.h3-positioned {
  position: absolute;
  margin: 0;
  text-shadow: none;
  }
  .all-day-dining-swiper .swiper-slide .slide-content h3.h3-pos-top-left-out {
  top: -1.3em;
  left: -2.3em;
  transform: none;
  }
  .all-day-dining-swiper .swiper-slide .slide-content h3.h3-pos-top-right-out {
  top: -0.7em;
  right: -1.3em;
  left: auto;
  transform: none;
  }
  .all-day-dining-swiper .swiper-slide .slide-content h3.h3-pos-center-low {
  top: 2em;
  left: -1em;
  transform: none;
  }
  .all-day-dining-swiper .swiper-slide .slide-content h3.h3-pos-center-high {
  top: -1.5em;
  left: -1.5em;
  transform: none;
  }
  .all-day-dining-swiper .swiper-slide .slide-content p {
  font-size: 1em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
  .all-day-dining-swiper .swiper-slide img:hover {
  filter: brightness(0.7);
  transition: filter 0.3s ease-in-out;
  }
  .all-day-dining-swiper .swiper-slide {
  transition: transform 0.3s ease-out;
  }
  .all-day-dining-swiper .swiper-slide:nth-child(odd) {
  transform: translateY(-40px);
  }
  .all-day-dining-swiper .swiper-slide:nth-child(even) {
  transform: translateY(40px);
  }
  .anim-on-scroll {
  visibility: hidden;
  }
  .anim-on-scroll.animate__animated {
  visibility: visible;
  }
  .site-footer.anim-on-scroll.animate__fadeInUp {
  --animate-duration: 1.8s;
  }
  .site-footer .footer-wave-divider.anim-on-scroll.animate__fadeInUp {
  --animate-delay: 0.1s;
  }
  .site-footer .logo.anim-on-scroll.animate__fadeInUp {
  --animate-delay: 0.2s;
  }
  .site-footer p.anim-on-scroll.animate__fadeInUp {
  --animate-delay: 0.3s;
  }
  .site-footer .footer-map.anim-on-scroll.animate__fadeInUp {
  --animate-delay: 0.4s;
  }
  .site-footer .footer-buttons.anim-on-scroll.animate__fadeInUp {
  --animate-delay: 0.5s;
  }
  .site-footer p.copyright.anim-on-scroll.animate__fadeInUp {
  --animate-delay: 0.6s;
  }
  .anim-on-scroll {
  visibility: hidden;
  }
  .anim-on-scroll.animate__animated {
  visibility: visible;
  }
  .left-column .logo {
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  margin-top:35px;
  }

.menu-layout {
padding: 0 20px;
width: 100%;
box-sizing: border-box;
}

.menu-container {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;

}

.menu-container > li {
  box-sizing: border-box;
  text-align: center;
  border-bottom: 1px solid rgba(0, 114, 188, 0.2);
}

.menu-container > li > a {
  font-size: 1.4em;
  line-height: 1.3;
  padding: 25px 10px; /* 為主選單項目設定更闊嘅上下空間 */
}

.menu-container > li.menu-item-full {
  flex: 0 0 100%;
}

.menu-container > li.menu-item-half {
  flex: 0 0 50%;
}

.menu-container > li.menu-item-half:nth-child(odd) {
  border-right: 1px solid rgba(0, 114, 188, 0.2);
}

.menu-container > li.menu-item-half:last-of-type:nth-child(odd) {
  flex-basis: 100%;
  border-right: none;
}

.menu-container li a p {
  margin: 0;
  padding: 0; /* 將 <p> 嘅 padding 歸零，避免空間重複計算 */
}

.menu-container .sub-menu-container {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-container .sub-menu-container li {
  flex: 0 0 50%;
  box-sizing: border-box;
  text-align: center;
  border-top: 1px solid rgba(0, 114, 188, 0.2);
}

.menu-container .sub-menu-container li:nth-child(odd) {
  border-right: 1px solid rgba(0, 114, 188, 0.2);
}

.menu-container .sub-menu-container li a {
  opacity: 0.7;
  padding: 18px 10px; /* 為子選單項目設定合適嘅上下空間 */
}

.menu-container .sub-menu-container li a p {
  font-size: 0.8em; 
  line-height: 1.2;
}