:root {
  --main-color: #1c709d;
  --color-white: #ffffff;
  --color-bg: #eef5ff;
  --color-sidebar-bg: #ffffff;
  --color-card-bg: #ffffff;
  --color-card-hover: #e5f0f9;
  --color-text: #1a1a1a;
  --color-text-muted: #667781;
  --color-border: #e0e0e0;
  --color-active-bg: #e8f0f5;
  --main_body_color: #f7f8f9;
  --color-sidebar-child-hover: #e5f2f9;
  --article-card-bg: #ffffff;
  --article-card-shadow: 0 12px 30px rgba(18, 35, 65, 0.08);
  --article-crumb-color: #6a7784;
  --article-title-color: #0f1f33;
  --article-meta-color: #7d8995;
  --article-body-text: #1f2c3c;
  --article-body-bg-start: #f7fdff;
  --article-body-bg-end: #eefbff;
  --article-body-border: #def6ff;
  --article-related-border: #dbebf0;
  --article-related-link-color: #1c709d;
  --article-related-hover-bg: #f7fdff;
  --feedback-bg: #eefaff;
  --feedback-btn-bg: #1c709d;
  --feedback-btn-bg-hover: #1c709d;
  --feedback-btn-text: #ffffff;
  --feedback-title-color: #1f2c3c;
}

.svg-icon {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: var(--main-color);
  display: inline-block;
  vertical-align: middle;
}

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

html {
  font-size: 14px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: "Raleway", sans-serif;
  color: var(--color-text);
  background: var(--main_body_color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  body[databg-size=default] {
    overflow: hidden;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  height: 56px;
  padding: 0 24px;
  background: #042f47;
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header__logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  width: 151px;
}
.header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: fill;
     object-fit: fill;
}
.header__right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.header__right .mobile-menu {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border-radius: 8%;
  transition: background 0.25s ease;
}
@media (min-width: 768px) {
  .header__right .mobile-menu {
    display: none;
  }
}
.header__right .mobile-menu:hover {
  background: var(--main-color);
  color: var(--color-white);
}
.header__right .lang_box {
  font-size: 14px;
  font-weight: 500;
  color:#fff;
  cursor: pointer;
  display: none;
}
.header__right .lang_box:hover {
  color: var(--color-text);
}
@media (min-width: 768px) {
  .header__right .lang_box {
    display: block;
  }
}

.main-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex: 1;
  min-height: 0;
  width: 100%;
}

.sidebar {
  display: none;
}
@media (max-width: 767px) {
  .sidebar {
    display: flex;
    flex-direction: column;
    width: min(82vw, 320px);
    background: var(--color-white);
    border-right: 1px solid var(--color-border);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 220;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease;
  }
}
@media (min-width: 768px) {
  .sidebar {
    display: flex;
    flex-direction: column;
    width: 290px;
    min-width: 290px;
    background: var(--color-white);
    border-right: 1px solid var(--color-border);
    height: calc(100vh - 56px);
    position: sticky;
    top: 56px;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}
.sidebar__nav {
  padding: 8px 0;
}
.sidebar .sidebar_mox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}
@media (min-width: 768px) {
  .sidebar .sidebar_mox {
    display: none;
  }
}
.sidebar .sidebar_mox .sidebar__logo {
  width: 136px;
  flex-shrink: 0;
}
.sidebar .sidebar_mox .sidebar__logo img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.sidebar .sidebar_mox .sidebar-close {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border-radius: 8%;
  transition: background 0.25s ease;
}
@media (min-width: 768px) {
  .sidebar .sidebar_mox .sidebar-close {
    display: none;
  }
}
.sidebar .sidebar_mox .sidebar-close:hover {
  background: var(--main-color);
  color: var(--color-white);
}
.sidebar__list {
  padding: 0;
}
.sidebar__item {
  display: block;
  padding: 0 10px;
  border-radius: 0;
  transition: background 0.25s ease;
  position: relative;
  margin-bottom: 4px;
}
.sidebar__item--open .sidebar__children {
  display: block;
  background: var(--color-bg);
}
.sidebar__item--open .sidebar__link {
  background: var(--color-bg);
  color: var(--main-color);
  font-weight: 600;
}
.sidebar__item--open .sidebar__icon {
  color: var(--main-color);
}
.sidebar__item--active .sidebar__link {
  color: var(--main-color);
  font-weight: 700;
}
.sidebar__item--active .sidebar__icon {
  color: var(--main-color);
  background: var(--color-active-bg);
}
.sidebar__link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  padding: 12px 0;
}
.sidebar__link--toggle {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
  justify-content: space-between;
  padding: 8px 8px;
  text-align: left;
}
.sidebar__link-main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}
.sidebar .sidebar__icon {
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-card-hover);
  border-radius: 50px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.sidebar__toggle {
  color: var(--color-text-muted);
  font-size: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border-radius: 50%;
  transition: background 0.25s ease;
}
.sidebar__toggle:hover {
  background: var(--color-border);
}
.sidebar__children {
  display: none;
  margin: 0;
  background: var(--color-white);
  border-radius: 0;
  overflow: hidden;
  width: 100%;
}
.sidebar__child-item {
  border-bottom: 1px solid var(--color-border);
}
.sidebar__child-item:last-child {
  border-bottom: none;
}
.sidebar__child-link {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 12px 11px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  transition: background 0.25s ease, color 0.25s ease;
}
.sidebar__child-link:hover {
  background: var(--color-sidebar-child-hover);
}
.sidebar__child-link i {
  font-size: 12px;
  color: var(--color-text);
  flex-shrink: 0;
}
.sidebar__child-link--active {
  background: var(--color-active-bg);
  color: var(--main-color);
  font-weight: 600;
}
.sidebar__child-link--active i {
  color: var(--main-color);
}
.sidebar::-webkit-scrollbar {
  width: 4px;
}
.sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

@media (max-width: 767px) {
  body[databg-size=collapsed] .sidebar {
    transform: translateX(-100%);
  }
}

@media (max-width: 767px) {
  body[databg-size=default] .sidebar {
    transform: translateX(0);
    width: 100%;
  }
}

.content {
  flex: 1;
  min-width: 0;
  padding: 80px 11px 5px;
}
@media (min-width: 768px) {
  .content {
    max-width: 960px;
    margin: 0 auto;
  }
}

/* NAVIGATION SYNC */
.page-back-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.25s ease;
}
.page-back-btn:hover {
  gap: 12px;
  color: var(--main-color);
}
.page-back-btn i {
  font-size: 16px;
}

#topicsSection {
  transition: opacity 0.3s ease;
}

.popular-article-card small {
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
}

.hero {
  margin: 0 0 10px;
}
.hero__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 5px;
}
.hero__search {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  background: var(--color-card-bg);
  border-radius: 28px;
  padding: 11px 16px;
  gap: 10px;
  border: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.hero__search:focus-within {
  border-color: var(--main-color);
  box-shadow: 0 0 0 4px rgba(var(--main-color), 0.1);
}
.hero__search-icon {
  color: var(--color-text-muted);
  font-size: 14px;
  flex-shrink: 0;
}
.hero__search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: var(--color-text);
  font-family: "Raleway", sans-serif;
}
.hero__search-input::-moz-placeholder {
  color: var(--color-text-muted);
}
.hero__search-input::placeholder {
  color: var(--color-text-muted);
}
.hero__search-clear {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--color-text-muted);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.hero__search-clear i {
  font-size: 16px;
  line-height: 1;
}
.hero__search-clear:hover {
  color: var(--color-text);
  background: var(--color-card-hover);
}
.hero__search-clear.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.topics {
  margin: 15px 0 32px;
}
.topics__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}
.topics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .topics__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .topics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.topic-card {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.topic-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
  cursor: pointer;
}
.topic-card {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 12px;
}
.topic-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--main-color), 0.12);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  font-size: 28px;
  color: var(--main-color);
  margin-bottom: 8px;
}
.topic-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}
.topic-card__desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-articles__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}
.popular-articles__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 12px;
}

.popular-article-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 16px 18px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  gap: 12px;
}
@media (min-width: 768px) {
  .popular-article-card {
    padding: 18px 20px;
  }
}
.popular-article-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  transform: translateX(4px);
  color: var(--main-color);
}
.popular-article-card:hover i {
  color: var(--main-color);
  transform: translateX(4px);
}
.popular-article-card__title {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .popular-article-card__title {
    font-size: 15px;
  }
}
.popular-article-card i {
  font-size: 14px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.article-view__back {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.25s ease;
}
.article-view__back:hover {
  gap: 12px;
  color: var(--main-color);
}
.article-view__back i {
  font-size: 16px;
}
.article-view__container {
  background: var(--article-card-bg);
  border-radius: 16px;
  box-shadow: var(--article-card-shadow);
  padding: 24px 20px;
}
@media (min-width: 768px) {
  .article-view__container {
    padding: 32px 36px;
  }
}
.article-view__crumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  color: var(--article-crumb-color);
  font-size: 12px;
  margin-bottom: 16px;
}
.article-view__crumb i {
  font-size: 10px;
}
@media (min-width: 768px) {
  .article-view__crumb {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.article-view__title {
  font-size: 22px;
  line-height: 1.3;
  color: var(--article-title-color);
  margin-bottom: 10px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .article-view__title {
    font-size: 26px;
    margin-bottom: 12px;
  }
}
.article-view__meta {
  color: var(--article-meta-color);
  font-size: 13px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .article-view__meta {
    font-size: 14px;
    margin-bottom: 28px;
  }
}
.article-view__body {
  color: var(--article-body-text);
  background: linear-gradient(180deg, var(--article-body-bg-start) 0%, var(--article-body-bg-end) 100%);
  border: 1px solid var(--article-body-border);
  border-radius: 14px;
  padding: 20px;
  line-height: 1.85;
  margin-bottom: 28px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .article-view__body {
    padding: 24px;
    font-size: 15px;
  }
}
.article-view__body h3 {
  font-size: 16px;
  margin: 20px 0 12px;
  color: var(--article-title-color);
  font-weight: 700;
}
.article-view__body h3:first-child {
  margin-top: 0;
}
.article-view__body p {
  margin-bottom: 16px;
}
.article-view__body p:last-child {
  margin-bottom: 0;
}
.article-view__body ul,
.article-view__body ol {
  margin: 16px 0;
  padding-left: 24px;
}
.article-view__body ul li,
.article-view__body ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.article-view__body ul {
  list-style: disc;
}
.article-view__body ol {
  list-style: decimal;
}
.article-view__body strong {
  font-weight: 700;
  color: var(--article-title-color);
}
.article-view__feedback {
  margin-top: 32px;
  padding: 20px;
  background: var(--feedback-bg);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
}
@media (min-width: 768px) {
  .article-view__feedback {
    padding: 24px;
  }
}
.article-view__feedback-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--feedback-title-color);
  text-align: center;
}
@media (min-width: 768px) {
  .article-view__feedback-title {
    font-size: 17px;
  }
}
.article-view__feedback-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}
.article-view__feedback-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  min-width: 80px;
  height: 40px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--feedback-btn-bg);
  color: var(--feedback-btn-text);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.article-view__feedback-btn:hover {
  background: var(--feedback-btn-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 65, 187, 0.3);
}
.article-view__feedback-btn--active {
  box-shadow: 0 0 0 3px rgba(31, 65, 187, 0.2);
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none !important;
  }
}

.text-muted {
  color: var(--color-text-muted);
}

.text-primary {
  color: var(--main-color);
}/*# sourceMappingURL=faq.css.map */