:root {
  --nala-ink: #021849;
  --nala-text: #1c1c1c;
  --nala-blue: #2a62ff;
  --nala-soft: #f7f9ff;
  --nala-border: rgba(2, 24, 73, 0.1);
  --nala-shadow: 0 18px 50px rgba(2, 24, 73, 0.14);
  --nala-header-height: 64px;
  --nala-sidebar-width: 250px;
}

.EmVfjc,
.xu46lf,
[data-loadingmessage] {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

body.nala-static-site {
  background: #fff;
  color: var(--nala-text);
}

.nala-skip-link {
  background: var(--nala-ink);
  border-radius: 999px;
  color: #fff;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(-150%);
  z-index: 220;
}

.nala-skip-link:focus {
  transform: translateY(0);
}

.nala-site-header {
  background: transparent;
  border: 0;
  box-shadow: none;
  left: var(--nala-sidebar-width);
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 95;
}

.nala-site-header-inner {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  min-height: 56px;
  padding: 16px 32px 0;
  pointer-events: none;
}

.nala-mobile-brand,
.nala-menu-button,
.nala-search {
  pointer-events: auto;
}

.nala-mobile-brand {
  align-items: center;
  color: var(--nala-ink);
  display: none;
  font-family: Poppins, Roboto, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nala-brand-logo {
  height: 38px;
  object-fit: contain;
  width: 38px;
}

.nala-menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--nala-ink);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 42px;
}

.nala-menu-button span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  position: absolute;
  width: 20px;
}

.nala-menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.nala-menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.nala-search {
  position: relative;
}

.nala-search-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 999px;
  color: var(--nala-text);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.nala-search-toggle svg {
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.nala-search-toggle:hover,
.nala-menu-button:hover {
  background: rgba(42, 98, 255, 0.08);
  color: var(--nala-blue);
}

.nala-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.nala-search-panel {
  background: #fff;
  border: 1px solid var(--nala-border);
  border-radius: 18px;
  box-shadow: var(--nala-shadow);
  margin-top: 10px;
  max-height: min(520px, calc(100vh - 90px));
  overflow: auto;
  padding: 14px;
  position: absolute;
  right: 0;
  top: 100%;
  width: min(440px, calc(100vw - var(--nala-sidebar-width) - 48px));
  z-index: 130;
}

.nala-search-box {
  display: flex;
  gap: 8px;
}

.nala-search-input {
  background: var(--nala-soft);
  border: 1px solid rgba(42, 98, 255, 0.18);
  border-radius: 999px;
  color: var(--nala-ink);
  flex: 1 1 auto;
  font: 500 15px/1.2 Roboto, Arial, sans-serif;
  min-width: 0;
  outline: none;
  padding: 12px 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.nala-search-input:focus {
  background: #fff;
  border-color: rgba(42, 98, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(42, 98, 255, 0.12);
}

.nala-search-button {
  background: var(--nala-blue);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
  font: 700 13px/1 Roboto, Arial, sans-serif;
  padding: 0 16px;
}

.nala-search-summary {
  color: rgba(2, 24, 73, 0.72);
  font: 500 13px/1.4 Roboto, Arial, sans-serif;
  margin: 12px 0 8px;
}

.nala-search-results {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nala-search-results li {
  border-radius: 14px;
  padding: 10px 12px;
}

.nala-search-results li:hover {
  background: rgba(42, 98, 255, 0.07);
}

.nala-search-results a {
  color: var(--nala-ink);
  display: block;
  font: 700 14px/1.3 Roboto, Arial, sans-serif;
  text-decoration: none;
}

.nala-search-results p {
  color: rgba(28, 28, 28, 0.68);
  font: 400 13px/1.45 Roboto, Arial, sans-serif;
  margin: 4px 0 0;
}

.nala-page-layout {
  display: block;
  min-height: 100vh;
}

.nala-sidebar {
  background: #fff;
  bottom: 0;
  left: 0;
  max-height: none;
  overflow: auto;
  position: fixed;
  top: 0;
  transform: none;
  transition: transform 0.22s ease;
  width: var(--nala-sidebar-width);
  z-index: 90;
}

.nala-sidebar-brand {
  color: var(--nala-ink);
  display: block;
  font-family: Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  padding: 48px 48px 24px;
  text-decoration: none;
}

.nala-sidebar-brand .nala-brand-logo {
  display: block;
  height: auto;
  margin-bottom: 34px;
  width: 73px;
}

.nala-sidebar-brand span {
  display: block;
  max-width: 110px;
}

.nala-sidebar-close {
  display: none;
}

.nala-sidebar-nav {
  padding: 0 16px 48px;
}

.nala-content-column {
  margin-left: 0;
  min-width: 0;
}

.nala-content-column > [jsname="ZBtY8b"] {
  margin-left: var(--nala-sidebar-width) !important;
  width: calc(100% - var(--nala-sidebar-width));
}

.nala-content-column .O13XJf .IFuOkc {
  background-position: bottom left !important;
}

.nala-content-column h1[style*="text-align: justify"],
.nala-content-column h2[style*="text-align: justify"],
.nala-content-column h3[style*="text-align: justify"] {
  text-align: center !important;
}

.nala-content-column p[style*="text-align: justify"] {
  text-align: left !important;
}

.nala-sidebar-backdrop {
  display: none;
}

.nala-nav-loading {
  color: rgba(2, 24, 73, 0.64);
  font: 500 14px/1.4 Roboto, Arial, sans-serif;
  margin: 10px;
}

#yuynLe .nala-nav-tree,
#yuynLe .nala-nav-subtree {
  list-style: none;
  margin: 0;
  padding: 0;
}

#yuynLe .nala-nav-item {
  margin: 0;
}

#yuynLe .nala-nav-row {
  align-items: center;
  border-radius: 0;
  color: var(--nala-text);
  display: flex;
  gap: 4px;
  min-height: 32px;
  padding: 2px 0;
}

#yuynLe .nala-nav-link,
#yuynLe .nala-nav-section-button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: block;
  flex: 1 1 auto;
  font: 400 16px/1.35 Roboto, Arial, sans-serif;
  margin: 0;
  min-width: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
}

#yuynLe .nala-nav-link {
  overflow-wrap: anywhere;
}

#yuynLe .nala-nav-toggle,
#yuynLe .nala-nav-toggle-spacer {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 22px;
  justify-content: center;
  order: -1;
  width: 18px;
}

#yuynLe .nala-nav-toggle {
  background: transparent;
  border: 0;
  color: var(--nala-text);
  cursor: pointer;
  margin: 0;
  padding: 0;
}

#yuynLe .nala-nav-link:focus-visible,
#yuynLe .nala-nav-section-button:focus-visible,
#yuynLe .nala-nav-toggle:focus-visible,
.nala-menu-button:focus-visible,
.nala-search-button:focus-visible,
.nala-search-toggle:focus-visible {
  outline: 2px solid rgba(42, 98, 255, 0.55);
  outline-offset: 2px;
}

#yuynLe .nala-nav-row:hover {
  color: var(--nala-blue);
}

#yuynLe .nala-nav-chevron {
  height: 16px;
  transition: transform 0.18s ease;
  width: 16px;
}

#yuynLe .nala-nav-toggle[aria-expanded="true"] .nala-nav-chevron {
  transform: rotate(90deg);
}

#yuynLe .nala-nav-group {
  margin-left: 18px;
  opacity: 1;
  overflow: hidden;
  transform: translateY(0);
  transition: height 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.18s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height, opacity, transform;
}

#yuynLe .nala-nav-group[hidden] {
  display: none !important;
}

#yuynLe .nala-nav-item[data-nav-depth="0"] {
  margin-top: 8px;
}

#yuynLe .nala-nav-item[data-nav-depth="0"]:first-child {
  margin-top: 0;
}

#yuynLe .nala-nav-item[data-nav-depth="1"],
#yuynLe .nala-nav-item[data-nav-depth="2"],
#yuynLe .nala-nav-item[data-nav-depth="3"] {
  margin-top: 4px;
}

#yuynLe .nala-nav-item[data-nav-depth="0"] > .nala-nav-row .nala-nav-link,
#yuynLe .nala-nav-item[data-nav-depth="0"] > .nala-nav-row .nala-nav-section-button {
  font-weight: 400;
}

#yuynLe .nala-nav-item[data-nav-depth="1"] > .nala-nav-row .nala-nav-link,
#yuynLe .nala-nav-item[data-nav-depth="1"] > .nala-nav-row .nala-nav-section-button {
  font-size: 16px;
}

#yuynLe .nala-nav-item[data-nav-depth="2"] > .nala-nav-row .nala-nav-link,
#yuynLe .nala-nav-item[data-nav-depth="3"] > .nala-nav-row .nala-nav-link {
  font-size: 15px;
}

#yuynLe .nala-nav-row.lhZOrc .nala-nav-link,
#yuynLe .nala-nav-row.lhZOrc .nala-nav-section-button,
#yuynLe .nala-nav-row.nala-nav-active .nala-nav-link {
  color: var(--nala-ink);
  font-weight: 700;
}

.nala-site-footer {
  color: var(--nala-ink);
}

.nala-site-footer-contact {
  padding: 40px 16px 28px;
  text-align: center;
}

.nala-site-footer-title {
  color: var(--nala-ink);
  font-family: Poppins, Roboto, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 28px;
}

.nala-site-footer-line {
  color: var(--nala-ink);
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.nala-site-footer-link {
  color: var(--nala-ink);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nala-site-footer-band {
  background-color: #f8f8fb;
  background-image: url('/assets/footer-bg-20260525.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.nala-site-footer-inner {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 140px;
  padding: 24px 16px 72px;
  text-align: center;
}

.nala-site-footer-year {
  color: var(--nala-ink);
  display: inline-block;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 1024px) {
  .nala-site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--nala-border);
    box-shadow: 0 8px 28px rgba(2, 24, 73, 0.08);
    left: 0;
    pointer-events: auto;
    position: sticky;
  }

  .nala-site-header-inner {
    justify-content: space-between;
    min-height: var(--nala-header-height);
    padding: 0 16px;
  }

  .nala-mobile-brand {
    display: inline-flex;
  }

  .nala-mobile-brand span {
    display: none;
  }

  .nala-menu-button {
    display: inline-flex;
    order: 3;
  }

  .nala-search {
    margin-left: auto;
    order: 2;
  }

  .nala-search-panel {
    width: min(420px, calc(100vw - 32px));
  }

  .nala-sidebar {
    box-shadow: var(--nala-shadow);
    max-width: calc(100vw - 42px);
    transform: translateX(-105%);
    width: var(--nala-sidebar-width);
    z-index: 110;
  }

  body.nala-static-menu-open {
    overflow: hidden;
  }

  body.nala-static-menu-open .nala-sidebar {
    transform: translateX(0);
  }

  .nala-sidebar-close {
    background: rgba(42, 98, 255, 0.1);
    border: 0;
    border-radius: 999px;
    color: var(--nala-ink);
    cursor: pointer;
    display: block;
    font: 700 13px/1 Roboto, Arial, sans-serif;
    margin: 14px 14px 2px auto;
    padding: 10px 14px;
  }

  .nala-sidebar-brand {
    padding-top: 20px;
  }

  .nala-content-column {
    margin-left: 0;
  }

  .nala-content-column .yxgWrb {
    margin-left: 0 !important;
  }

  .nala-content-column > [jsname="ZBtY8b"] {
    margin-left: 0 !important;
    width: 100%;
  }

  .nala-sidebar-backdrop {
    background: rgba(2, 24, 73, 0.36);
    bottom: 0;
    display: block;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.2s ease;
    z-index: 100;
  }

  body.nala-static-menu-open .nala-sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

@media only screen and (max-width: 560px) {
  .nala-search-panel {
    right: -52px;
  }
}
