html {
  color-scheme: light;
}

body {
  background: #ffffff;
}

.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(19, 56, 76, 0.06);
}

.top-action-bar {
  width: 100%;
  background: linear-gradient(90deg, #2f7380 0%, #23485b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.top-action-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
  padding: 6px 70px 6px 20px;
  box-sizing: border-box;
}

.top-action-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
  flex-wrap: wrap;
}

.top-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border: 1px solid #27c2c9;
  border-radius: 999px;
  background: #27c2c9;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(39, 194, 201, 0.18);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.top-action-btn:hover {
  background: #1fb3ba;
  border-color: #1fb3ba;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(39, 194, 201, 0.24);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  width: 100%;
  max-width: 100%;
  padding-left: 36px;
  padding-right: 70px;
  gap: 28px;
  background-color: #ffffff;
  box-sizing: border-box;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
  height: 68px;
  margin-left: -18px;
}

.brand-logo {
  display: block;
  width: 130px;
  height: 130px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  margin-right: -40px;
  margin-top: -30px;
  margin-bottom: -28px;
}

.brand-text {
  color: #23485b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin-left: 0;
  position: relative;
  top: -2px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  background-color: #ffffff;
  height: 68px;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: #2f7380;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: #2f7380;
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

@media (max-width: 991px) {
  .top-action-inner {
    padding: 6px 20px;
  }

  .header-container {
    height: 64px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }

  .brand {
    height: 60px;
    margin-left: -10px;
  }

  .brand-logo {
    width: 120px;
    height: 120px;
    margin-right: -38px;
    margin-top: -26px;
    margin-bottom: -20px;
  }

  .brand-text {
    top: -4px;
  }

  .site-nav {
    height: 60px;
  }

  .nav-list {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .top-action-inner {
    justify-content: center;
    padding: 6px 12px;
  }

  .top-action-buttons {
    width: auto;
    margin: 0 auto;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .top-action-btn {
    height: 28px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .header-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 10px 16px 12px 16px;
    gap: 5px;
  }

  .brand {
    justify-content: center;
    height: auto;
    margin-left: 0;
  }

  .brand-logo {
    width: 130px;
    height: 130px;
    margin-right: -40px;
    margin-top: -24px;
    margin-bottom: -16px;
  }

  .brand-text {
    top: -2px;
  }

  .site-nav {
    margin-left: 0;
    width: 100%;
    height: auto;
    justify-content: center;
  }

  .nav-list {
    justify-content: center;
    gap: 16px;
  }

  .nav-link::after {
    bottom: -3px;
  }
}

@media (max-width: 575px) {
  .top-action-inner {
    justify-content: center;
    padding: 5px 10px;
  }

  .top-action-buttons {
    width: auto;
    margin: 0 auto;
    justify-content: center;
    gap: 5px;
    flex-wrap: nowrap;
  }

  .top-action-btn {
    height: 27px;
    padding: 0 9px;
    font-size: 0.64rem;
  }

  .brand-logo {
    width: 130px;
    height: 130px;
    margin-right: -40px;
    margin-top: -24px;
    margin-bottom: -10px;
  }

  .brand-text {
    font-size: 0.95rem;
    top: 0px;
  }

  .nav-list {
    gap: 14px;
  }

  .nav-link {
    font-size: 0.82rem;
  }

  .nav-link::after {
    bottom: -3px;
  }
}