body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body .container {
  flex: 1;
}
/* Header Component Styles */

.page-company .active-company {
  color: #978DFF;
}

.site-header {
  background-color: #1D1045;
  width: 100%;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #332167;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  max-width: 100%;
  height: 80px;
}

/* Logo Section */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  height: 30px;
  width: 118px;
  background: url('/webview/image/Logo.png') no-repeat center center;
  background-size: contain;
}


/* Desktop Navigation */
.header-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Burger Menu Button */
.burger-menu {
  display: none;
  background: transparent;
  border: none;
  padding: 6px 4px;
  z-index: 1001;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.burger-menu .icon{
  background: url('/webview/image/burgerIcon.png') no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 12px;
}

.burger-menu:hover {
  opacity: 0.8;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1D1045;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  position: relative;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 5%;
  background: transparent;
  border: none;
  padding: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-close .icon{
  background: url('/webview/image/closeIcon.png') no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 16px;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.mobile-nav-links li {
  width: 100%;
  text-align: center;
}

.mobile-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  display: block;
  padding: 12px 0;
  transition: opacity 0.2s ease;
  width: 100%;
}

.mobile-nav-links a:hover {
  opacity: 0.7;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
  .header-container {
    padding: 0 5%;
    height: 44px;
  }

  .logo-icon {
    width: 78px;
    height: 20px;
  }

  /* Hide desktop navigation */
  .header-nav {
    display: none;
  }

  /* Show burger menu */
  .burger-menu {
    display: flex;
  }

  /* Animate burger menu when active */
  .burger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}
