* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-family-cn);
}

body {
  font-family: var(--font-family-cn);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-body);
  color: var(--color-text-secondary);
  background-color: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-cn);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  color: var(--color-text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 48px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-accent-cyan);
  color: var(--color-bg-primary);
  padding: 8px 16px;
  z-index: 10000;
  font-weight: var(--font-weight-medium);
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

/* Focus States */
:focus-visible {
  outline: 2px solid var(--color-accent-cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  min-height: var(--touch-target-min);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--color-accent-cyan);
  color: var(--color-bg-primary);
}

.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-text-primary);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-cta {
  background-color: var(--color-accent-orange);
  color: var(--color-text-primary);
}

.btn-cta:hover {
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

/* Cards */
.card {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

/* Section Animations */
.section-animate {
  opacity: 1;
  transform: translateY(30px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page Load Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.page-load {
  animation: fadeIn 600ms ease-out;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .section-animate {
    opacity: 1;
    transform: none;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 85px;
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.navbar .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  max-width: none;
  padding: 0 10vw;
}

.navbar .logo {
  justify-self: start;
}

.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 120px;
}

.logo-icon {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links .current {
  color: var(--color-text-primary);
}

.navbar.scrolled {
  background-color: #000000;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.navbar.navbar-official {
  background-color: rgba(0, 0, 0, 0.8);
}

.navbar.navbar-official.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
}

.logo {
  display: flex;
  align-items: center;
  color: var(--color-text-primary);
}

.nav-links > li {
  position: relative;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background-color: #FFFFFF;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card-hover);
  padding: 6px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  z-index: 1001;
  transition: opacity 200ms ease-out, transform 200ms ease-out, visibility 200ms;
  white-space: nowrap;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: var(--font-size-body-sm);
  color: #0A1628 !important;
  border-left: 3px solid transparent;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.dropdown-menu a:hover {
  background-color: #F1F5F9;
  color: #0A83BE !important;
}

.lang-switcher {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0;
}

.lang-switcher .lang-btn {
  padding: 0 15px;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  height: 23px;
  line-height: 21px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-switcher .lang-btn:hover {
  background: RGBA(255,255,255,0.3);
}

.lang-switcher .lang-btn.active {
  background: RGBA(255,255,255,0.5);
  color: #fff;
}

.lang-switcher .lang-btn:first-child {
  border-right: none;
}

/* Language Dropdown (Global style) */
.lang-dropdown {
  position: relative;
}

.lang-dropdown .lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lang-dropdown .lang-globe {
  width: 22px;
  height: 22px;
  display: block;
}

.lang-dropdown .lang-arrow {
  width: 14px;
  height: 14px;
}

.lang-dropdown .lang-toggle:hover {
  color: rgba(255, 255, 255, 0.8);
}

.lang-dropdown .lang-arrow {
  transition: transform var(--transition-fast);
}

.lang-dropdown.active .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown .lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  background-color: #FFFFFF;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card-hover);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
}

.lang-dropdown.active .lang-menu,
.lang-dropdown:hover .lang-menu,
.lang-dropdown:focus-within .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown.closing .lang-menu {
  opacity: 0 !important;
  visibility: hidden !important;
}

.lang-dropdown .lang-menu li {
  list-style: none;
}

.lang-dropdown .lang-option {
  display: block;
  width: 100%;
  padding: 10px 20px;
  text-align: left;
  font-size: 16px;
  color: #0A1628;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.lang-dropdown .lang-option:hover,
.lang-dropdown .lang-option.active {
  background-color: #F1F5F9;
  color: #0A83BE;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: transform 300ms ease, opacity 300ms ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background-color: var(--color-bg-primary);
  z-index: 999;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 300ms ease;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links > li {
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-links a {
  display: block;
  padding: 20px 0;
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.mobile-dropdown-icon {
  transition: transform 300ms ease;
}

.mobile-dropdown-toggle.expanded .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.mobile-submenu.expanded {
  max-height: 500px;
}

.mobile-submenu a {
  padding: 14px 0 14px 24px;
  font-size: 18px;
  color: var(--color-text-secondary);
}

.mobile-contact {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.mobile-contact p {
  color: var(--color-text-muted);
  font-size: var(--font-size-caption);
  margin-bottom: 8px;
}

/* Footer */
.footer {
  background-color: #000000;
  padding: 50px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-col {
  color: #FFFFFF;
  text-align: left;
}

.footer-col p {
  margin-bottom: 10px;
}

.footer-col p:last-child {
  margin-bottom: 0;
}

.footer-heading {
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 24px;
}

.footer-phone {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 24px;
}

.footer-text {
  font-size: 14px;
  color: #CCCCCC;
  line-height: 24px;
}

.footer-text a {
  color: #CCCCCC;
  text-decoration: none;
}

.footer-text a:hover {
  color: #FFFFFF;
}

.footer-text-indent {
  margin-left: 36px;
}

.footer-beian-inner {
  white-space: nowrap;
  display: inline;
}

.footer-beian {
  font-size: 12px;
  color: #CCCCCC;
  line-height: 24px;
}

.footer-beian a {
  color: #CCCCCC;
  text-decoration: none;
}

.footer-beian a:hover {
  color: #FFFFFF;
}

.footer-copyright {
  font-size: 12px;
  color: #CCCCCC;
  line-height: 24px;
}

.footer-qr {
  width: 100px;
  height: 100px;
}

/* Responsive */
@media (max-width: 1200px) {
  .navbar .container {
    padding: 0 5vw;
  }

  .navbar .nav-links {
    gap: 80px;
  }
}

@media (max-width: 1024px) {
  .navbar .nav-links {
    gap: 48px;
  }

  .nav-links a {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .navbar .nav-links {
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col-qr {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-h1: 28px;
    --font-size-h2: 26px;
    --font-size-h3: 24px;
    --font-size-h4: 22px;
    --font-size-body: 15px;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
  }

  .navbar .logo {
    justify-self: auto;
  }

  .navbar .nav-links,
  .navbar .btn {
    display: none;
  }

  .lang-switcher {
    display: flex;
    position: static;
    margin-right: 20px;
    margin-left: auto;
  }

  .lang-switcher.lang-dropdown .lang-toggle {
    padding: 8px 0 8px 8px;
  }

  .lang-switcher.lang-dropdown .lang-toggle span,
  .lang-switcher.lang-dropdown .lang-arrow {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    position: static;
    transform: none;
    padding: 8px 8px 8px 0;
  }

  .mobile-nav {
    display: block;
    max-width: none;
  }

  .mobile-nav-links a {
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --------------------------------------------------
   Legacy Footer (old official website content)
   -------------------------------------------------- */
.legacy-footer {
  background-color: #000000;
  padding: 56px 0 40px;
  border-top: 1px solid var(--color-border);
}

.legacy-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.legacy-footer-col {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.legacy-footer-col h3 {
  font-size: 18px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  font-weight: var(--font-weight-bold);
}

.legacy-footer-col a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.legacy-footer-col a:hover {
  color: var(--color-text-primary);
}

.legacy-footer-phone {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

.legacy-footer-beian {
  font-size: 12px;
  margin-top: 8px;
}

.legacy-footer-beian img {
  display: inline-block;
  width: 15px;
  height: auto;
  vertical-align: middle;
  margin-left: 6px;
}

.legacy-footer-copyright {
  font-size: 12px;
  margin-top: 8px;
}

.legacy-footer-indent {
  margin-left: 36px;
}

.legacy-footer-mt {
  margin-top: 32px;
}

.legacy-footer-qr .legacy-qr-row {
  display: flex;
  gap: 16px;
}

.legacy-footer-qr .legacy-qr-row > div {
  text-align: center;
}

.legacy-footer-qr .legacy-qr-row span {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.legacy-footer-qr img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
}

@media (max-width: 1024px) {
  .legacy-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .legacy-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legacy-footer-indent {
    margin-left: 0;
  }

  .legacy-footer-qr .legacy-qr-row {
    justify-content: flex-start;
  }
}

/* ==================================================
   Shared Official Header / Footer (from index.css)
   ================================================== */

/* --------------------------------------------------
   Home Footer - 严格还原旧版 html_szzx_front 页脚
   -------------------------------------------------- */
.home-footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 50px 0 40px;
  font-family: "Microsoft YaHei", "Heiti SC", "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.home-footer .container {
  max-width: 1170px;
}

.home-footer .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.home-footer [class*="col-"] {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

.home-footer .col-xs-12 { width: 100%; }
.home-footer .col-xs-6 { width: 50%; }

@media (min-width: 768px) {
  .home-footer .col-sm-7 { width: 58.33333333%; }
  .home-footer .col-sm-5 { width: 41.66666667%; }
  .home-footer .col-sm-6 { width: 50%; }
}

@media (min-width: 992px) {
  .home-footer .col-md-4 { width: 33.33333333%; }
  .home-footer .col-md-3 { width: 25%; }
  .home-footer .col-md-2 { width: 16.66666667%; }
}

.new-footer {
  color: #FFFFFF;
  text-align: left;
}

.new-footer p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #CCCCCC;
  line-height: 1.8;
}

.footer-heading {
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 400;
}

.footer-phone {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}

.footer-indent {
  margin-left: 36px;
}

.footer-beian {
  font-size: 12px;
}

.footer-beian img {
  display: inline-block;
  width: 15px;
  height: auto;
  vertical-align: middle;
  margin-left: 6px;
}

.footer-copyright {
  font-size: 12px;
}

.footer-2 {
  padding-left: 13px;
}

.footer-mt {
  margin-top: 43px;
}

.footer-3-4 {
  padding-left: 20px;
  text-align: left;
}

.footer-combined {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.footer-join {
  flex: 2 1 auto;
  min-width: 0;
}

.footer-qr {
  flex: 1 1 auto;
  min-width: 0;
}

.footer-qr-labels {
  margin-bottom: 5px;
}

.footer-qr-labels span {
  font-size: 14px;
  color: #CCCCCC;
  white-space: nowrap;
}

.footer-qr-labels span + span {
  margin-left: 55px;
}

.footer-qr-row {
  display: flex;
  gap: 15px;
  margin-bottom: 5px;
}

.footer-qr-row img {
  width: 100px;
  height: 100px;
  margin-top: 10px;
  display: block;
}

.new-footer a {
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.new-footer a:hover {
  color: #68B726;
}

.privacy-link {
  background: none;
  border: none;
  color: #CCCCCC;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.privacy-link:hover {
  color: #68B726;
}

/* --------------------------------------------------
   Privacy Modal - 严格还原旧版个人信息保护方针弹窗
   -------------------------------------------------- */
.privacy-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  display: none;
  overflow: auto;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, 0.3);
}

.privacy-modal[aria-hidden="false"] {
  display: block;
}

.privacy-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.privacy-modal-content {
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
  width: 770px;
  max-width: 90vw;
  margin: 30px auto;
}

.privacy-modal-header {
  height: 60px;
  border-bottom: 1px solid #EEEEEE;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.privacy-modal-title {
  width: 150px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #68B726;
}

.privacy-modal-title h4 {
  height: 30px;
  line-height: 30px;
  margin: 0;
  font-size: 16px;
  color: #333333;
  font-weight: normal;
  width: 150px;
}

.privacy-modal-close {
  order: 2;
  font-size: 30px;
  line-height: 1;
  color: #333333;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 4px;
}

.privacy-modal-body {
  padding: 20px;
}

.privacy-modal-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.privacy-modal-footer {
  padding: 12px 20px 20px;
  text-align: right;
}

.privacy-modal-close-btn {
  padding: 6px 18px;
  font-size: 14px;
  color: #333333;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  cursor: pointer;
}

.privacy-modal-close-btn:hover {
  background-color: #F5F5F5;
}

@media (max-width: 991px) {
  .privacy-modal-content {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .home-footer .col-sm-7,
  .home-footer .col-sm-5,
  .home-footer .col-sm-6,
  .home-footer .col-md-4,
  .home-footer .col-md-3,
  .home-footer .col-md-2 {
    width: 100%;
  }

  .home-footer [class*="footer-"] {
    padding-left: 15px;
    margin-bottom: 24px;
  }

  .footer-indent {
    margin-left: 0;
  }

  .footer-qr-row {
    justify-content: flex-start;
  }

  .footer-combined {
    flex-direction: column;
    gap: 24px;
  }
}

/* --------------------------------------------------
   Hero Navbar: transparent on home page
   -------------------------------------------------- */
.navbar.navbar-hero {
  background-color: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.navbar.navbar-hero.scrolled {
  background-color: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.navbar.navbar-hero .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.navbar.navbar-hero .nav-links a:hover,
.navbar.navbar-hero .nav-links .current {
  color: #FFFFFF;
}

.navbar.navbar-hero .lang-toggle {
  color: rgba(255, 255, 255, 0.9);
}

.navbar.navbar-hero .mobile-toggle span {
  background-color: #FFFFFF;
}

@media (max-width: 768px) {
  .navbar.navbar-hero .logo {
    left: 24px;
  }
}
