@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Noto Sans TC", sans-serif;
  color: #000000;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.header__logo,
.header__nav-list li,
.header__actions > * {
  opacity: 0;
}

.hero__content,
.page-hero__title,
.page-hero__subtitle,
.breadcrumb {
  opacity: 0;
}

.news-list__filters,
.news-card,
.faq-page__style-switcher,
.faq-page__filters,
.faq-general__item,
.faq-card,
.faq-accordion__item,
.faq-table__row,
.article-toc,
.article-content {
  opacity: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .header__container {
    padding: 10px 0px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo-img {
  width: 79px;
  height: 79px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
}
.header__logo-subtitle {
  font-size: 13.4px;
  letter-spacing: 1.07px;
  color: #000000;
}
.header__logo-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.29px;
  color: #1CADCB;
}
.header__nav {
  position: relative;
}
.header__nav-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 253, 253, 0.7), rgba(255, 255, 255, 0.46));
  border-radius: 54px;
}
.header__nav-list {
  position: relative;
  display: flex;
  gap: 55px;
  padding: 15px 60px;
}
.header__nav-list a {
  font-size: 18px;
  letter-spacing: 2.52px;
  color: #013f4c;
  transition: color 0.3s ease;
}
.header__nav-list a:hover {
  color: #1CADCB;
}
.header__nav-item {
  position: relative;
}
.header__nav-item--dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #013f4c;
  border-bottom: 2px solid #013f4c;
  transform: rotate(45deg);
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.header__nav-item--dropdown:hover > a::after {
  transform: rotate(-135deg);
  border-color: #1CADCB;
}
.header__nav-item--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 15px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}
.header__dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
}
.header__dropdown li {
  padding: 0;
}
.header__dropdown a {
  display: block;
  padding: 10px 25px;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: #013f4c;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.header__dropdown a:hover {
  background: rgba(28, 173, 203, 0.1);
  color: #1CADCB;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__link {
  font-size: 14px;
  letter-spacing: 1.96px;
  color: #1CADCB;
  text-decoration: underline;
}
.header__btn {
  padding: 6px 24px;
  border-radius: 33px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.96px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header__btn--outline {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #1CADCB;
  color: #1CADCB;
}
.header__btn--outline:hover, .header__btn--outline.header__btn--active {
  background: #1CADCB;
  color: #ffffff;
}
.header__btn--filled {
  background: #1CADCB;
  border: 1px solid #1CADCB;
  color: #ffffff;
}
.header__btn--filled:hover, .header__btn--filled.header__btn--active {
  background: #158fa5;
}
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.header__mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #1CADCB;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  height: 64vh;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 260px 80px 0;
}
.hero__title {
  font-size: 33.5px;
  font-weight: 700;
  letter-spacing: 4.7px;
  color: #037e97;
  margin-bottom: 20px;
}
.hero__desc-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__desc {
  font-size: 24px;
  letter-spacing: 3.38px;
  color: #000000;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 20px;
  border-radius: 14px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.hero__desc--typewriter {
  min-height: 1.5em;
  border-right: 3px solid #1CADCB;
  animation: blink-cursor 0.75s step-end infinite;
}
.hero__desc--typewriter:empty {
  padding-right: 5px;
}

@keyframes blink-cursor {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #1CADCB;
  }
}
.process {
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
}
.process__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 160px;
  margin-bottom: 60px;
}
.process__lines {
  position: relative;
  width: 182px;
  height: 43px;
  margin-bottom: 20px;
}
.process__lines--bottom {
  margin-top: 20px;
  margin-bottom: 0;
}
.process__line {
  position: absolute;
  width: 187px;
  height: 2px;
  background: linear-gradient(to right, #1CADCB, transparent);
  transform: rotate(-13deg);
  transform-origin: left center;
}
.process__line--thin {
  height: 1px;
  top: 6px;
}
.process__line--bottom {
  transform: rotate(13deg);
  background: linear-gradient(to right, transparent, #1CADCB);
}
.process__title-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.process__subtitle {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 19.65px;
  letter-spacing: 0.79px;
  color: #1CADCB;
  text-align: right;
  line-height: 1.4;
}
.process__title {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 4.2px;
  color: #000000;
}
.process__tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.process__tab {
  padding: 12px 40px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #5d5f5b;
  background: transparent;
  border: 2px solid #e5e5e5;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.process__tab:hover {
  border-color: #1CADCB;
  color: #1CADCB;
}
.process__tab--active {
  background: #1CADCB;
  border-color: #1CADCB;
  color: #ffffff;
}
.process__content {
  padding: 0 40px;
}
.process__cards {
  display: none;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.process__cards--active {
  display: flex;
}
.process__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
}
.process__card-img {
  width: 280px;
  height: 160px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 0;
}
.process__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.process__card-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-bottom: 20px;
  z-index: 1;
  background-color: #fff;
  border-radius: 100%;
  align-content: center;
}
.process__card-icon-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.process__card-icon-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}
.process__card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1CADCB;
  margin-bottom: 12px;
  line-height: 1.4;
}
.process__card-desc {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #5d5f5b;
  line-height: 1.6;
  margin-bottom: 25px;
}
.process__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1CADCB;
  color: #ffffff;
  padding: 14px 50px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.process__card-btn .arrow {
  font-size: 20px;
}
.process__card-btn:hover {
  background: #158fa5;
  transform: translateY(-3px);
}

.news {
  position: relative;
  padding: 60px 0 100px;
  min-height: 500px;
  background-image: url(../assets/img/bg-blue.jpg);
  background-size: cover;
}
.news__bg {
  position: absolute;
  top: 0;
  left: -10px;
  right: 0;
  height: 503px;
  z-index: -1;
}
.news__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 30px;
}
.news__subtitle {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 19.65px;
  letter-spacing: 0.79px;
  color: #ffffff;
  opacity: 0.6;
  display: block;
  margin-bottom: 5px;
}
.news__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 4.2px;
  color: #ffffff;
}
.news__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}
.news__item {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.news__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
.news__item-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}
.news__item-year {
  font-size: 16.8px;
  font-weight: 700;
  letter-spacing: 2.35px;
  color: #1CADCB;
}
.news__item-day {
  font-size: 27.3px;
  font-weight: 700;
  letter-spacing: 3.82px;
  color: #1CADCB;
}
.news__item-content {
  flex: 1;
}
.news__item-tag {
  display: inline-block;
  background: #1CADCB;
  color: #ffffff;
  padding: 4px 18px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.96px;
  margin-bottom: 8px;
}
.news__item-title {
  font-size: 16.8px;
  font-weight: 700;
  letter-spacing: 2.35px;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}
.news__item-link {
  width: 70px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.news__item-link:hover {
  transform: translateX(5px);
}
.news__item-link img {
  width: 100%;
  height: auto;
}
.news__more-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  padding: 10px 42px;
  background: linear-gradient(115.57deg, rgb(42, 88, 162) 5.08%, rgb(13, 54, 120) 94.92%);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 2.8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.news__more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(42, 88, 162, 0.3);
}

.faq {
  padding: 80px 0 100px;
}
.faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.faq__subtitle {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 19.65px;
  letter-spacing: 0.79px;
  color: #1CADCB;
  opacity: 0.6;
  display: block;
  margin-bottom: 5px;
}
.faq__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 4.2px;
  color: #1CADCB;
}
.faq__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.faq__content {
  flex: 1;
  position: relative;
}
.faq__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.faq__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.faq__list {
  padding: 40px 50px;
}
.faq__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 2px dashed rgba(28, 173, 203, 0.3);
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__item-num {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  color: #909a9d;
  flex-shrink: 0;
}
.faq__item-text {
  font-size: 16.8px;
  font-weight: 700;
  letter-spacing: 2.35px;
  color: #685757;
  padding-top: 8px;
}
.faq__image {
  width: 550px;
  flex-shrink: 0;
}
.faq__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.faq__more-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  padding: 10px 42px;
  background: linear-gradient(115.57deg, rgb(42, 88, 162) 5.08%, rgb(28, 173, 203) 94.92%);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 2.8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.faq__more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(28, 173, 203, 0.3);
}

.regulations {
  padding: 60px 0 100px;
  background: linear-gradient(to bottom, #ffffff, #f6faff);
}
.regulations__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
}
.regulations__tab {
  padding: 15px 40px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 3.23px;
  border-radius: 38px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #1CADCB;
  box-shadow: 41px 158px 46px rgba(170, 170, 192, 0), 27px 101px 42px rgba(170, 170, 192, 0.01), 15px 57px 35px rgba(170, 170, 192, 0.05), 7px 25px 26px rgba(170, 170, 192, 0.09), 2px 6px 15px rgba(170, 170, 192, 0.1);
}
.regulations__tab--active {
  background: #1CADCB;
  color: #ffffff;
}
.regulations__tab:hover:not(.regulations__tab--active) {
  background: #b3e6ed;
}
.regulations__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
}
.regulations__list {
  flex: 1;
  position: relative;
  padding-left: 40px;
}
.regulations__timeline {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 100px;
  width: 2px;
  background: #1CADCB;
}
.regulations__item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}
.regulations__item-dot {
  position: absolute;
  left: -32px;
  top: 5px;
  width: 17px;
  height: 17px;
  background: #1CADCB;
  border-radius: 50%;
}
.regulations__item-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}
.regulations__item-tag {
  display: inline-block;
  background: #1CADCB;
  color: #ffffff;
  padding: 4px 18px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.96px;
}
.regulations__item-date {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.96px;
  color: #1CADCB;
}
.regulations__item-title {
  font-size: 14px;
  letter-spacing: 1.96px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 425px;
}
.regulations__more {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 2.8px;
  color: #1CADCB;
  text-decoration: underline;
  padding-left: 30px;
  transition: color 0.3s ease;
}
.regulations__more:hover {
  color: #037e97;
}
.regulations__images {
  position: relative;
  width: 500px;
  height: 400px;
  flex-shrink: 0;
}
.regulations__img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.regulations__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.regulations__img--1 {
  width: 400px;
  height: 300px;
  top: 0;
  right: 0;
  z-index: 2;
}
.regulations__img--2 {
  width: 350px;
  height: 250px;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.regulations__panel {
  display: none;
}
.regulations__panel--active {
  display: block;
}

.downloads__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.downloads__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 60px;
}
.downloads__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.downloads__item:hover .downloads__title {
  color: #1CADCB;
}
.downloads__item:hover .downloads__icon svg path:first-child {
  fill: #d4edda;
}
.downloads__icon {
  flex-shrink: 0;
}
.downloads__icon svg {
  transition: all 0.3s ease;
}
.downloads__content {
  flex: 1;
  min-width: 0;
}
.downloads__title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.downloads__meta {
  font-size: 13px;
  color: #888;
  letter-spacing: 0.3px;
}

.sitemap-page {
  padding: 60px 0 100px;
  background: #ffffff;
}
.sitemap-page__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.sitemap-section {
  margin-bottom: 60px;
}
.sitemap-section__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.sitemap-section__indicator {
  width: 4px;
  height: 24px;
  background: #1CADCB;
  border-radius: 2px;
}
.sitemap-section__title {
  font-size: 22px;
  font-weight: 700;
  color: #123a59;
  letter-spacing: 1px;
}
.sitemap-section__content {
  padding-left: 16px;
}
.sitemap-section__intro {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}
.sitemap-section__note {
  font-size: 14px;
  color: #666;
  margin-top: 30px;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.sitemap-shortcuts,
.sitemap-keyboard {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.sitemap-shortcuts li,
.sitemap-keyboard li {
  font-size: 15px;
  color: #444;
  line-height: 2;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.sitemap-shortcuts li::before,
.sitemap-keyboard li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1CADCB;
}

.sitemap-keyboard li::before {
  content: "";
}

kbd {
  display: inline-block;
  padding: 3px 8px;
  font-size: 13px;
  font-family: "Inter", monospace;
  color: #333;
  background: #f5f5f5;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin: 0 2px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-left: 16px;
}
.sitemap-grid__column {
  border-left: 1px solid #e0e0e0;
  padding-left: 20px;
}
.sitemap-grid__column:first-child {
  border-left: none;
  padding-left: 0;
}
.sitemap-grid__title {
  font-size: 16px;
  font-weight: 700;
  color: #123a59;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.sitemap-grid__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-grid__list li {
  margin-bottom: 10px;
}
.sitemap-grid__list a {
  font-size: 14px;
  color: #555;
  transition: color 0.3s ease;
}
.sitemap-grid__list a:hover {
  color: #1CADCB;
}

@media (max-width: 992px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
  .sitemap-grid__column {
    border-left: none;
    padding-left: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
  }
  .sitemap-grid__column:last-child {
    border-bottom: none;
  }
}
.footer {
  background: #f6faff;
  padding: 60px 0 30px;
}
.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer__left {
  flex: 1;
}
.footer__privacy {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2.8px;
  color: #000000;
  margin-bottom: 25px;
}
.footer__privacy a {
  text-decoration: underline;
}
.footer__info {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 2.24px;
  color: #000000;
  line-height: 1.7;
}
.footer__info p {
  margin-bottom: 3px;
}
.footer__highlight {
  color: #5d7894;
  font-weight: 700;
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.footer__logo {
  text-align: right;
  width: 80px;
}
@media only screen and (max-width: 768px) {
  .footer__logo {
    max-width: 100px;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__stats {
  text-align: right;
}
.footer__stat {
  margin-bottom: 10px;
}
.footer__stat-label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2.24px;
  color: #123a59;
}
.footer__stat-value {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 2.24px;
  color: #123a59;
}
.footer__copyright {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.96px;
  color: #5d7894;
  margin-top: 50px;
  padding-top: 30px;
}

@media (max-width: 1200px) {
  .header {
    padding: 15px 20px;
  }
  .header__nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav.mobile-open {
    display: block;
  }
  .header__nav-bg {
    display: none;
  }
  .header__nav-list {
    flex-direction: column;
    gap: 5px;
    padding: 5px 10px;
    align-items: stretch;
  }
  .header__nav-list a {
    font-size: 15px;
    display: block;
    padding: 12px 15px;
    text-align: left;
    border-radius: 8px;
    transition: background 0.2s ease;
  }
  .header__nav-list a:hover, .header__nav-list a:active {
    background: rgba(28, 173, 203, 0.1);
  }
  .header__nav-item--dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__nav-item--dropdown .header__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    margin-top: 5px;
    padding: 5px 0;
    min-width: auto;
  }
  .header__dropdown-link {
    text-align: left;
    padding: 10px 20px;
    font-size: 14px;
  }
  .header__actions {
    display: none;
    position: static;
    background: transparent;
    padding: 15px 10px;
    justify-content: center;
    gap: 10px;
    box-shadow: none;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 10px;
  }
  .header__actions.mobile-open {
    display: flex;
  }
  .header__btn {
    font-size: 13px;
    padding: 10px 16px;
  }
  .header__link {
    display: none;
  }
  .header__mobile-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s ease;
  }
  .header__mobile-toggle:hover, .header__mobile-toggle:active {
    background: rgba(0, 0, 0, 0.05);
  }
  .header__mobile-toggle.active {
    background: rgba(28, 173, 203, 0.1);
  }
  .header__mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .header__mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .header__mobile-close {
    display: block;
    text-align: right;
    padding: 10px;
    margin-bottom: 10px;
  }
  .header__mobile-close button {
    background: none;
    border: none;
    font-size: 14px;
    color: #1CADCB;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 6px;
    transition: background 0.2s ease;
  }
  .header__mobile-close button:hover {
    background: rgba(28, 173, 203, 0.1);
  }
  .process__cards {
    gap: 50px;
  }
  .faq__container {
    flex-direction: column;
    background: #EBF0F2;
    background: linear-gradient(180deg, rgba(235, 240, 242, 0) 0%, rgb(247, 253, 255) 100%);
  }
  .faq__image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .regulations__container {
    flex-direction: column;
  }
  .regulations__images {
    width: 100%;
    height: 350px;
    margin: 0 auto;
    max-width: 500px;
  }
}
@media (max-width: 992px) {
  .hero {
    height: 600px;
  }
  .hero__content {
    padding: 200px 40px 0;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__desc {
    font-size: 18px;
  }
  .process {
    padding: 60px 20px;
  }
  .process__header {
    padding-left: 40px;
  }
  .process__cards {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .news__grid {
    grid-template-columns: 1fr;
  }
  .footer__container {
    flex-direction: column;
    padding: 0 40px;
  }
  .footer__right {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .header__logo-img {
    width: 50px;
    height: 50px;
  }
  .header__logo-subtitle {
    font-size: 11px;
  }
  .header__logo-title {
    font-size: 13px;
  }
  .hero {
    height: 500px;
  }
  .hero__content {
    padding: 160px 20px 0;
  }
  .hero__title {
    font-size: 22px;
    letter-spacing: 3px;
  }
  .hero__desc {
    font-size: 15px;
    letter-spacing: 2px;
    padding: 5px 15px;
  }
  .process__header {
    padding-left: 20px;
  }
  .process__title {
    font-size: 24px;
  }
  .process__subtitle {
    font-size: 16px;
  }
  .process__card-img {
    width: 280px;
    height: 160px;
  }
  .process__card-title {
    font-size: 22px;
  }
  .process__card-desc {
    font-size: 16px;
  }
  .process__card-btn {
    font-size: 16px;
    padding: 12px 40px;
  }
  .news__header {
    margin-bottom: 40px;
  }
  .news__title {
    font-size: 24px;
  }
  .news__item {
    flex-wrap: wrap;
    gap: 15px;
  }
  .news__item-date {
    min-width: 60px;
  }
  .news__item-day {
    font-size: 22px;
  }
  .news__item-title {
    max-width: 100%;
    white-space: normal;
  }
  .news__item-link {
    width: 50px;
  }
  .faq__title {
    font-size: 24px;
  }
  .faq__list {
    padding: 30px 20px;
  }
  .faq__item-num {
    font-size: 24px;
  }
  .faq__item-text {
    font-size: 14px;
  }
  .regulations__tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .regulations__tab {
    font-size: 18px;
    padding: 12px 30px;
  }
  .regulations__item-title {
    max-width: 100%;
    white-space: normal;
  }
  .regulations__images {
    height: 280px;
  }
  .regulations__img--1 {
    width: 280px;
    height: 200px;
  }
  .regulations__img--2 {
    width: 220px;
    height: 160px;
  }
  .footer__privacy {
    font-size: 16px;
  }
  .footer__info {
    font-size: 13px;
  }
  .footer__logo {
    width: 200px;
  }
  .footer__copyright {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 450px;
  }
  .hero__content {
    padding: 140px 15px 0;
  }
  .hero__title {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .hero__desc {
    font-size: 13px;
    letter-spacing: 1.5px;
  }
  .process__card-img {
    width: 100%;
    max-width: 280px;
  }
  .news__container {
    padding: 0 15px;
  }
  .faq__container {
    padding: 0 15px;
  }
  .regulations__container {
    padding: 0 15px;
  }
}
.header--inner {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-hero {
  position: relative;
  padding: 160px 0 60px;
  background: linear-gradient(135deg, rgba(28, 173, 203, 0.05) 0%, rgba(28, 173, 203, 0.1) 100%);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231CADCB' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.page-hero__content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.page-hero__title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #037e97;
  margin-bottom: 10px;
}
.page-hero__subtitle {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 2px;
  color: #1CADCB;
  opacity: 0.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: #5d5f5b;
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color: #1CADCB;
}
.breadcrumb span {
  color: #909a9d;
}
.breadcrumb__current {
  color: #1CADCB;
  font-weight: 500;
}

.news-list {
  padding: 60px 0 100px;
  background: #ffffff;
}
.news-list__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.news-list__filters {
  margin-bottom: 40px;
}
.news-list__search {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin-bottom: 20px;
}
.news-list__search-input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid rgba(28, 173, 203, 0.2);
  border-radius: 30px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.news-list__search-input:focus {
  outline: none;
  border-color: #1CADCB;
}
.news-list__search-btn {
  width: 48px;
  height: 48px;
  background: #1CADCB;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-list__search-btn:hover {
  background: #158fa5;
  transform: scale(1.05);
}
.news-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news-list__tag {
  padding: 8px 20px;
  border: 2px solid rgba(28, 173, 203, 0.3);
  border-radius: 25px;
  background: transparent;
  color: #1CADCB;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-list__tag:hover, .news-list__tag--active {
  background: #1CADCB;
  color: #ffffff;
  border-color: #1CADCB;
}
.news-list__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.news-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  padding: 15px;
  background: linear-gradient(135deg, #1CADCB 0%, #158fa5 100%);
  border-radius: 12px;
  color: #ffffff;
}
.news-card__year {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.8;
}
.news-card__day {
  font-size: 22px;
  font-weight: 700;
}
.news-card__content {
  flex: 1;
}
.news-card__tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(28, 173, 203, 0.1);
  color: #1CADCB;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.news-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #013f4c;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.news-card__excerpt {
  font-size: 14px;
  color: #5d5f5b;
  line-height: 1.6;
}
.news-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #1CADCB;
  border-radius: 25px;
  color: #1CADCB;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.news-card__link:hover {
  background: #1CADCB;
  color: #ffffff;
}

.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(28, 173, 203, 0.15);
}
.pagination__info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5d7894;
  letter-spacing: 0.5px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination__select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid #5d7894;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #5d7894;
  background: #ffffff;
  cursor: pointer;
}
.pagination__confirm {
  height: 32px;
  padding: 0 16px;
  background: #5d7894;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination__confirm:hover {
  background: rgb(73.3195020747, 94.6058091286, 116.6804979253);
}
.pagination__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination__btn {
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(28, 173, 203, 0.3);
  border-radius: 6px;
  background: transparent;
  color: #5d7894;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination__btn:hover:not(:disabled) {
  background: #1CADCB;
  color: #ffffff;
  border-color: #1CADCB;
}
.pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination__page {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(28, 173, 203, 0.2);
  border-radius: 8px;
  background: transparent;
  color: #5d7894;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination__page:hover {
  background: rgba(28, 173, 203, 0.1);
  border-color: #1CADCB;
}
.pagination__page--active {
  background: linear-gradient(135deg, #1CADCB 0%, #037e97 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(28, 173, 203, 0.3);
}
.pagination__dots {
  color: #5d5f5b;
  padding: 0 4px;
}

@media (max-width: 768px) {
  .pagination {
    gap: 20px;
  }
  .pagination__info {
    font-size: 13px;
  }
  .pagination__controls {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .pagination__btn {
    padding: 0 10px;
    font-size: 12px;
    height: 32px;
  }
  .pagination__page {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
.article-page {
  padding: 0 0 80px;
  background: #ffffff;
}
.article-page__hero {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 30px 40px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.article-page__hero-left {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  width: 450px;
  flex-shrink: 0;
}
.article-page__views {
  background: #eaeff5;
  border: 1px solid #5d7894;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 70px;
}
.article-page__views-label {
  font-size: 12px;
  color: #5d7894;
  letter-spacing: 1.5px;
}
.article-page__views-count {
  font-size: 12px;
  color: #5d7894;
  letter-spacing: 1.5px;
  border-top: 1px solid #5d7894;
  padding-top: 8px;
}
.article-page__header-info {
  flex: 1;
}
.article-page__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.article-page__tag {
  background: #5d7894;
  color: #ffffff;
  padding: 5px 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}
.article-page__date {
  font-size: 14px;
  color: #5d7894;
  letter-spacing: 2px;
}
.article-page__date strong {
  font-weight: 700;
}
.article-page__main-title {
  font-size: 22px;
  font-weight: 700;
  color: #5d7894;
  line-height: 1.4;
  letter-spacing: 1.3px;
}
.article-page__hero-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}
.article-page__hero-image img {
  width: 100%;
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-page__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.article-toc {
  position: sticky;
  top: 120px;
  width: 260px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.article-toc__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(28, 173, 203, 0.15);
}
.article-toc__icon {
  color: #1CADCB;
  flex-shrink: 0;
}
.article-toc__title {
  font-size: 16px;
  font-weight: 700;
  color: #123a59;
  letter-spacing: 1px;
}
.article-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article-toc__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #5d5f5b;
  padding: 12px 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}
.article-toc__link:hover {
  background: rgba(28, 173, 203, 0.06);
  color: #037e97;
}
.article-toc__link:hover .article-toc__dot {
  background: #1CADCB;
  transform: scale(1.2);
}
.article-toc__link--active {
  background: linear-gradient(135deg, rgba(28, 173, 203, 0.12) 0%, rgba(28, 173, 203, 0.06) 100%);
  color: #037e97;
  font-weight: 600;
}
.article-toc__link--active .article-toc__dot {
  background: #1CADCB;
  box-shadow: 0 0 0 4px rgba(28, 173, 203, 0.2);
}
.article-toc__link--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: #1CADCB;
  border-radius: 0 3px 3px 0;
}
.article-toc__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.article-content {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}
.article-content__header {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(28, 173, 203, 0.1);
}
.article-content__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.article-content__tag {
  padding: 5px 16px;
  background: #1CADCB;
  color: #ffffff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}
.article-content__date {
  font-size: 14px;
  color: #5d5f5b;
}
.article-content__title {
  font-size: 28px;
  font-weight: 700;
  color: #013f4c;
  letter-spacing: 2px;
  line-height: 1.4;
}
.article-content__body {
  font-size: 16px;
  line-height: 1.8;
  color: #013f4c;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.article-content__body section {
  margin-bottom: 35px;
}
.article-content__body h2 {
  font-size: 20px;
  font-weight: 700;
  color: #037e97;
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 4px solid #1CADCB;
}
.article-content__body p {
  margin-bottom: 12px;
}
.article-content__body ul,
.article-content__body ol {
  margin-left: 25px;
  margin-bottom: 15px;
}
.article-content__body ul li,
.article-content__body ol li {
  margin-bottom: 8px;
}
.article-content__body img {
  max-width: 100%;
  height: auto;
}
.article-content__body table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}
.article-content__footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(28, 173, 203, 0.1);
}
.article-content__attachments {
  margin-bottom: 30px;
}
.article-content__attachments h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1CADCB;
  margin-bottom: 15px;
}
.article-content__nav {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.article-table th,
.article-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(28, 173, 203, 0.1);
}
.article-table th {
  background: rgba(28, 173, 203, 0.05);
  font-weight: 600;
  color: #037e97;
}
.article-table td {
  color: #013f4c;
}

.article-callout {
  background: linear-gradient(135deg, rgba(28, 173, 203, 0.1) 0%, rgba(28, 173, 203, 0.05) 100%);
  border-left: 4px solid #1CADCB;
  padding: 20px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
}
.article-callout strong {
  color: #1CADCB;
}

.article-attachment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(28, 173, 203, 0.05);
  border-radius: 10px;
  color: #1CADCB;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.article-attachment:hover {
  background: rgba(28, 173, 203, 0.1);
}
.article-attachment svg {
  flex-shrink: 0;
}

.article-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid rgba(28, 173, 203, 0.3);
  border-radius: 8px;
  color: #1CADCB;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.article-nav-btn:hover {
  background: #1CADCB;
  color: #ffffff;
  border-color: #1CADCB;
}
.article-nav-btn--list {
  background: #1CADCB;
  color: #ffffff;
  border-color: #1CADCB;
}
.article-nav-btn--list:hover {
  background: #158fa5;
}

.text-link {
  color: #1CADCB;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.text-link:hover {
  color: #037e97;
}

.article-image-text {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin: 30px 0;
}
.article-image-text--reverse {
  flex-direction: row-reverse;
}
.article-image-text__image {
  flex-shrink: 0;
  width: 475px;
  background: #e1e9f2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-image-text__image img {
  width: 100%;
  height: 334px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-image-text__caption {
  font-size: 16px;
  color: #5d7894;
  text-align: center;
  padding: 8px;
  letter-spacing: 0.3px;
}
.article-image-text__content {
  flex: 1;
}
.article-image-text__content p {
  color: #5d7894;
  line-height: 1.92;
  letter-spacing: 0.3px;
}

.article-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.article-section-title h3 {
  font-size: 22px;
  font-weight: 700;
  color: #5d7894;
  letter-spacing: 1.3px;
}

.article-table-section {
  margin: 40px 0;
}

.article-table-summary {
  font-size: 16px;
  color: #5d7894;
  margin-bottom: 15px;
}

.article-table--styled {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.article-table--styled th,
.article-table--styled td {
  padding: 10px 20px;
  text-align: center;
  border: 1px solid #ffffff;
}
.article-table--styled th {
  background: #5d7894;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
}
.article-table--styled td {
  background: #dce4ed;
  color: #5d7894;
  font-weight: 700;
  letter-spacing: 1px;
}

.article-gallery-section {
  margin: 40px 0;
}

.article-gallery {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  max-width: 100%;
  overflow: hidden;
}
.article-gallery__nav {
  width: 30px;
  height: 174px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.article-gallery__nav:hover svg path {
  stroke: #1CADCB;
}
.article-gallery__track {
  flex: 1;
  display: flex;
  gap: 16px;
  overflow: hidden;
}
.article-gallery__item {
  flex-shrink: 0;
  width: calc((100% - 32px) / 3);
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.article-gallery__item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.article-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-links-section {
  margin: 40px 0;
}

.article-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 80px;
  margin-top: 20px;
}

.article-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5d7894;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.article-link:hover {
  color: #1CADCB;
}
.article-link:hover svg path {
  stroke: #1CADCB;
}

.article-downloads-section {
  margin: 40px 0;
}

.article-downloads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.article-download-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px;
  background: #5d7894;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.article-download-btn:hover {
  background: rgb(73.3195020747, 94.6058091286, 116.6804979253);
  transform: translateY(-2px);
}

.article-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
}
.article-pagination__info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #666;
  letter-spacing: 0.5px;
}
.article-pagination__info strong {
  color: #1CADCB;
  font-weight: 700;
}
.article-pagination__select {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: #ffffff;
  cursor: pointer;
  margin: 0 4px;
}
.article-pagination__select:focus {
  outline: none;
  border-color: #1CADCB;
}
.article-pagination__confirm {
  padding: 6px 20px;
  margin-left: 8px;
  background: #ffffff;
  border: 1px solid #999;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.article-pagination__confirm:hover {
  background: #1CADCB;
  border-color: #1CADCB;
  color: #ffffff;
}
.article-pagination__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.article-pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.article-pagination__btn:hover {
  border-color: #1CADCB;
  color: #1CADCB;
}
.article-pagination__btn--active {
  background: #666;
  border-color: #666;
  color: #ffffff;
}
.article-pagination__btn--active:hover {
  background: #1CADCB;
  border-color: #1CADCB;
  color: #ffffff;
}

@media (max-width: 576px) {
  .article-pagination__info {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .article-pagination__nav {
    gap: 6px;
  }
  .article-pagination__btn {
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    font-size: 13px;
  }
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.lightbox--active {
  display: flex;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 50px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.lightbox__close:hover {
  opacity: 1;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.lightbox__nav:hover {
  opacity: 1;
}
.lightbox__nav--prev {
  left: 30px;
}
.lightbox__nav--next {
  right: 30px;
}
.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}

.faq-page {
  padding: 60px 0 100px;
  background: #ffffff;
}
.faq-page__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.faq-page__style-switcher {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(28, 173, 203, 0.05);
  border-radius: 12px;
}
.faq-page__style-switcher > span {
  font-size: 14px;
  color: #5d5f5b;
  margin-right: 10px;
}
.faq-page__style-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  color: #5d5f5b;
  background: #ffffff;
  border: 1px solid rgba(93, 95, 91, 0.3);
  transition: all 0.3s ease;
}
.faq-page__style-btn:hover, .faq-page__style-btn--active {
  background: #1CADCB;
  color: #ffffff;
  border-color: #1CADCB;
}
.faq-page__filters {
  margin-bottom: 40px;
}
.faq-page__search {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin-bottom: 20px;
}
.faq-page__search-input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid rgba(28, 173, 203, 0.2);
  border-radius: 30px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.faq-page__search-input:focus {
  outline: none;
  border-color: #1CADCB;
}
.faq-page__search-btn {
  width: 48px;
  height: 48px;
  background: #1CADCB;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-page__search-btn:hover {
  background: #158fa5;
}
.faq-page__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.faq-page__category {
  padding: 8px 20px;
  border: 2px solid rgba(28, 173, 203, 0.3);
  border-radius: 25px;
  background: transparent;
  color: #1CADCB;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-page__category:hover, .faq-page__category--active {
  background: #1CADCB;
  color: #ffffff;
  border-color: #1CADCB;
}

.faq-general__item {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}
.faq-general__question {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px dashed rgba(28, 173, 203, 0.2);
}
.faq-general__num {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  color: #1CADCB;
  flex-shrink: 0;
}
.faq-general__q-text {
  font-size: 18px;
  font-weight: 700;
  color: #013f4c;
  letter-spacing: 1px;
  padding-top: 5px;
}
.faq-general__answer {
  display: flex;
  gap: 20px;
}
.faq-general__a-label {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: #037e97;
  flex-shrink: 0;
}
.faq-general__a-text {
  font-size: 15px;
  line-height: 1.8;
  color: #5d5f5b;
}
.faq-general__a-text p {
  margin-bottom: 10px;
}
.faq-general__a-text ol,
.faq-general__a-text ul {
  margin-left: 20px;
  margin-bottom: 10px;
}
.faq-general__a-text ol li,
.faq-general__a-text ul li {
  margin-bottom: 6px;
}

.faq-table {
  overflow-x: auto;
}
.faq-table__content {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}
.faq-table__th-num {
  width: 80px;
}
.faq-table__th-category {
  width: 120px;
}
.faq-table__th-action {
  width: 80px;
}
.faq-table thead tr {
  background: linear-gradient(135deg, #1CADCB 0%, #158fa5 100%);
  color: #ffffff;
}
.faq-table thead tr th {
  padding: 18px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}
.faq-table__row {
  transition: background 0.3s ease;
  cursor: pointer;
}
.faq-table__row:hover {
  background: rgba(28, 173, 203, 0.05);
}
.faq-table__row td {
  padding: 18px 15px;
  border-bottom: 1px solid rgba(28, 173, 203, 0.1);
}
.faq-table__num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1CADCB;
}
.faq-table__category-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(28, 173, 203, 0.1);
  color: #1CADCB;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.faq-table__question {
  font-size: 15px;
  font-weight: 500;
  color: #013f4c;
}
.faq-table__expand-btn {
  width: 36px;
  height: 36px;
  border: 2px solid #1CADCB;
  border-radius: 50%;
  background: transparent;
  color: #1CADCB;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-table__expand-btn:hover {
  background: #1CADCB;
  color: #ffffff;
}
.faq-table__expand-btn svg {
  transition: transform 0.3s ease;
}
.faq-table__expand-btn.expanded {
  background: #1CADCB;
  color: #ffffff;
}
.faq-table__expand-btn.expanded svg {
  transform: rotate(45deg);
}
.faq-table__answer-row {
  display: none;
}
.faq-table__answer-row.open {
  display: table-row;
}
.faq-table__answer-row td {
  padding: 0;
}
.faq-table__answer {
  padding: 25px 30px;
  background: rgba(28, 173, 203, 0.03);
  border-left: 4px solid #1CADCB;
  font-size: 15px;
  line-height: 1.8;
  color: #5d5f5b;
}
.faq-table__answer p {
  margin-bottom: 10px;
}
.faq-table__answer ol,
.faq-table__answer ul {
  margin-left: 20px;
}
.faq-table__answer ol li,
.faq-table__answer ul li {
  margin-bottom: 6px;
}

.faq-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 30px;
}

.faq-card {
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #228296;
  border-left: 4px solid #228296;
  padding: 20px 22px;
  box-shadow: 45px 70px 23px 0px rgba(139, 182, 193, 0), 29px 45px 21px 0px rgba(139, 182, 193, 0.01), 16px 25px 18px 0px rgba(139, 182, 193, 0.05), 7px 11px 13px 0px rgba(139, 182, 193, 0.09), 2px 3px 7px 0px rgba(139, 182, 193, 0.1);
  transition: all 0.3s ease;
  min-height: 134px;
}
.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 182, 193, 0.2);
}
.faq-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.faq-card__tag {
  font-size: 16px;
  font-weight: 700;
  color: #5d7894;
  letter-spacing: 0.96px;
  line-height: 1.4;
}
.faq-card__date {
  font-size: 16px;
  font-weight: 400;
  color: #5d7894;
  letter-spacing: 0.96px;
  line-height: 1.4;
}
.faq-card__question {
  font-size: 16px;
  font-weight: 500;
  color: #58636e;
  letter-spacing: 0.96px;
  line-height: 1.4;
}
.faq-card__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid #1CADCB;
  border-radius: 8px;
  color: #1CADCB;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-card__more:hover {
  background: #1CADCB;
  color: #ffffff;
}

.faq-accordion__item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.faq-accordion__item.open .faq-accordion__icon {
  transform: rotate(180deg);
}
.faq-accordion__item.open .faq-accordion__content {
  max-height: 500px;
  padding: 25px 30px;
}
.faq-accordion__item.open .faq-accordion__header {
  background: linear-gradient(135deg, #1CADCB 0%, #158fa5 100%);
}
.faq-accordion__item.open .faq-accordion__header .faq-accordion__num,
.faq-accordion__item.open .faq-accordion__header .faq-accordion__question {
  color: #ffffff;
}
.faq-accordion__item.open .faq-accordion__header .faq-accordion__tag {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.faq-accordion__item.open .faq-accordion__header .faq-accordion__icon {
  color: #ffffff;
}
.faq-accordion__header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
.faq-accordion__header:hover {
  background: rgba(28, 173, 203, 0.05);
}
.faq-accordion__header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.faq-accordion__num {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: #1CADCB;
}
.faq-accordion__tag {
  padding: 4px 12px;
  background: rgba(28, 173, 203, 0.1);
  color: #1CADCB;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.faq-accordion__question {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #013f4c;
}
.faq-accordion__icon {
  color: #1CADCB;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 30px;
}
.faq-accordion__answer {
  font-size: 15px;
  line-height: 1.8;
  color: #5d5f5b;
  border-top: 2px dashed rgba(28, 173, 203, 0.2);
  padding-top: 20px;
}
.faq-accordion__answer p {
  margin-bottom: 10px;
}
.faq-accordion__answer ol,
.faq-accordion__answer ul {
  margin-left: 20px;
}
.faq-accordion__answer ol li,
.faq-accordion__answer ul li {
  margin-bottom: 6px;
}
.faq-accordion--home .faq-accordion__item {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}
.faq-accordion--home .faq-accordion__header {
  padding: 16px 20px;
}
.faq-accordion--home .faq-accordion__num {
  font-size: 18px;
}
.faq-accordion--home .faq-accordion__question {
  font-size: 15px;
}

@media (max-width: 992px) {
  .page-hero {
    padding: 140px 0 50px;
  }
  .page-hero__content {
    padding: 0 30px;
  }
  .page-hero__title {
    font-size: 28px;
  }
  .article-page__container {
    flex-direction: column;
  }
  .article-toc {
    position: static;
    width: 100%;
  }
  .news-card {
    flex-wrap: wrap;
  }
  .news-card__link {
    width: 100%;
    justify-content: center;
  }
  .faq-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .faq-cards__grid {
    grid-template-columns: 1fr;
  }
}
.pagination {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.pagination__info {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #5d7894;
  letter-spacing: 1.96px;
  line-height: 1.4;
}
.pagination__select {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 26px;
  border: 1px solid #5d7894;
  border-radius: 5px;
  padding: 3px 18px;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #5d7894;
}
.pagination__confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 26px;
  background: #5d7894;
  border: none;
  border-radius: 5px;
  padding: 3px 18px;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
}
.pagination__confirm:hover {
  background: rgb(73.3195020747, 94.6058091286, 116.6804979253);
}
.pagination__controls {
  display: flex;
  align-items: center;
  gap: 11px;
}
.pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 3px 18px;
  background: #ffffff;
  border: 1px solid #5d7894;
  border-radius: 5px;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #5d7894;
  letter-spacing: 1.96px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination__btn:hover {
  background: #5d7894;
  color: #ffffff;
}
.pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border: 1px solid #5d7894;
  border-radius: 50%;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #5d7894;
  letter-spacing: 1.96px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination__page:hover {
  background: #5d7894;
  color: #ffffff;
}
.pagination__page--active {
  background: #5d7894;
  color: #ffffff;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 40px;
  }
  .page-hero__content {
    padding: 0 20px;
  }
  .page-hero__title {
    font-size: 24px;
    letter-spacing: 3px;
  }
  .page-hero__subtitle {
    font-size: 16px;
  }
  .breadcrumb {
    font-size: 12px;
    gap: 6px;
  }
  .news-list__container,
  .faq-page__container,
  .article-page__container {
    padding: 0 20px;
  }
  .article-content {
    padding: 25px;
  }
  .article-content__title {
    font-size: 22px;
  }
  .article-content__body h2 {
    font-size: 18px;
  }
  .article-content__nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .faq-page__style-switcher {
    justify-content: center;
  }
  .faq-accordion__header {
    flex-wrap: wrap;
    gap: 10px;
  }
  .faq-accordion__header-left {
    width: 100%;
  }
  .faq-table thead th:nth-child(2),
  .faq-table tbody td:nth-child(2) {
    display: none;
  }
  .article-page__hero {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .article-page__hero-left {
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }
  .article-page__views {
    flex-direction: row;
    width: auto;
    padding: 8px 15px;
  }
  .article-page__views-count {
    border-top: none;
    border-left: 1px solid #5d7894;
    padding-top: 0;
    padding-left: 10px;
  }
  .article-page__main-title {
    font-size: 18px;
  }
  .article-page__hero-image img {
    height: 250px;
  }
  .article-toc {
    display: none;
  }
  .article-image-text {
    flex-direction: column !important;
    gap: 20px;
  }
  .article-image-text__img {
    flex: none;
    width: 100%;
  }
  .article-image-text__content {
    flex: none;
    width: 100%;
  }
  .article-gallery__track {
    gap: 10px;
  }
  .article-gallery__item {
    width: calc(50% - 5px);
    height: 150px;
  }
  .article-gallery__nav {
    width: 24px;
    height: 150px;
  }
  .article-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .article-downloads {
    grid-template-columns: 1fr;
  }
  .article-download-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
  .article-table--styled {
    font-size: 13px;
  }
  .article-table--styled th, .article-table--styled td {
    padding: 8px 12px;
  }
  .article-section-title h3 {
    font-size: 16px;
  }
  .article-callout {
    padding: 20px;
  }
}
.en-page .en-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
}
.en-page .en-header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.en-page .en-header__logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.en-page .en-header__logo-img {
  width: 70px;
  height: auto;
}
.en-page .en-header__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.en-page .en-header__logo-sub {
  font-size: 11px;
  color: #5d5f5b;
  letter-spacing: 0.5px;
}
.en-page .en-header__logo-title {
  font-size: 18px;
  font-weight: 700;
  color: #800015;
  letter-spacing: 2px;
}
.en-page .en-header__nav {
  display: flex;
  align-items: center;
  gap: 35px;
}
.en-page .en-header__nav-item {
  position: relative;
}
.en-page .en-header__nav-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #013f4c;
  letter-spacing: 1px;
  padding: 28px 0;
  transition: color 0.3s ease;
}
.en-page .en-header__nav-item > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}
.en-page .en-header__nav-item > a:hover {
  color: #800015;
}
.en-page .en-header__nav-item:hover .en-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.en-page .en-header__nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #013f4c;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.en-page .en-header__nav-link:hover {
  color: #800015;
}
.en-page .en-header__nav-link--dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 28px 0;
}
.en-page .en-header__nav-link--dropdown::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.3s ease;
}
.en-page .en-header__nav-item--dropdown {
  position: relative;
}
.en-page .en-header__nav-item--dropdown:hover .en-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.en-page .en-header__nav-item--dropdown:hover .en-header__nav-link--dropdown::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.en-page .en-header__dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 15px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.en-page .en-header__dropdown li a {
  display: block;
  padding: 10px 25px;
  font-size: 14px;
  color: #013f4c;
  transition: all 0.3s ease;
}
.en-page .en-header__dropdown li a:hover {
  background: rgba(128, 0, 21, 0.08);
  color: #800015;
}
.en-page .en-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1200px) {
  .en-page .en-header__actions {
    display: none;
  }
}
.en-page .en-header__btn {
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #800015 0%, #4e070b 100%);
  color: #ffffff;
  border: none;
}
.en-page .en-header__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 0, 21, 0.4);
}
.en-page .en-header__btn--outline {
  border: 2px solid #800015;
  color: #800015;
  background: transparent;
}
.en-page .en-header__btn--outline:hover {
  background: #800015;
  color: #ffffff;
}
.en-page .en-header__sitemap {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: #800015;
  padding: 10px 20px;
  border-radius: 20px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.en-page .en-header__sitemap:hover {
  background: #4e070b;
  transform: translateY(-2px);
}
.en-page .en-header__sitemap--subtle {
  background: transparent;
  color: #5d5f5b;
  border: 1px solid #ddd;
  padding: 8px 16px;
  font-size: 13px;
}
.en-page .en-header__sitemap--subtle:hover {
  background: #f5f5f5;
  color: #013f4c;
  border-color: #ccc;
  transform: none;
}
@media (max-width: 1200px) {
  .en-page .en-header__sitemap {
    display: none;
  }
}
.en-page .en-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 6px;
  z-index: 1100;
}
.en-page .en-header__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #800015;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.en-page .en-header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.en-page .en-header__toggle.active span:nth-child(2) {
  opacity: 0;
}
.en-page .en-header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 1200px) {
  .en-page .en-header__toggle {
    display: flex;
  }
}
.en-page .en-mobile-nav {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 20px 30px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
@media (max-width: 1200px) {
  .en-page .en-mobile-nav {
    display: block;
  }
}
.en-page .en-mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.en-page .en-mobile-nav__item {
  border-bottom: 1px solid rgba(128, 0, 21, 0.1);
}
.en-page .en-mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: #013f4c;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.en-page .en-mobile-nav__link:hover {
  color: #800015;
}
.en-page .en-mobile-nav__link::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: #800015;
  transition: transform 0.3s ease;
}
.en-page .en-mobile-nav__link.expanded::after {
  content: "−";
}
.en-page .en-mobile-nav a.en-mobile-nav__link::after {
  display: none;
}
.en-page .en-mobile-nav__link--simple {
  border-bottom: 1px solid rgba(128, 0, 21, 0.1);
}
.en-page .en-mobile-nav__link--simple::after {
  display: none !important;
}
.en-page .en-mobile-nav__sub {
  display: none;
  padding: 0 0 15px 20px;
}
.en-page .en-mobile-nav__sub.open {
  display: block;
}
.en-page .en-mobile-nav__sub li {
  padding: 10px 0;
}
.en-page .en-mobile-nav__sub li a {
  font-size: 14px;
  color: #5d5f5b;
  transition: color 0.3s ease;
}
.en-page .en-mobile-nav__sub li a:hover {
  color: #800015;
}
.en-page .en-mobile-nav__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  margin-top: 10px;
}
.en-page .en-mobile-nav__btns .en-header__btn {
  width: 100%;
  text-align: center;
}
.en-page .en-main {
  padding-top: 80px;
}
.en-page .en-hero {
  background: linear-gradient(135deg, #f8f4f4 0%, #fff 50%, #f5f0f0 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.en-page .en-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(180deg, rgba(128, 0, 21, 0.03) 0%, rgba(128, 0, 21, 0.08) 100%);
}
.en-page .en-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.en-page .en-hero__text {
  flex: 1;
  max-width: 480px;
}
.en-page .en-hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, #800015 0%, #4e070b 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
}
.en-page .en-hero__title {
  font-size: 42px;
  font-weight: 700;
  color: #4e070b;
  letter-spacing: 4px;
  margin-bottom: 15px;
  line-height: 1.3;
}
.en-page .en-hero__subtitle {
  font-size: 18px;
  color: #800015;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}
.en-page .en-hero__image-wrapper {
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 20px;
  position: relative;
  min-width: 0;
}
.en-page .en-hero__vertical-text {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.en-page .en-hero__vertical-col {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #4e070b;
  background: linear-gradient(180deg, rgba(128, 0, 21, 0.05) 0%, rgba(128, 0, 21, 0.12) 100%);
  padding: 20px 10px 15px;
  border-radius: 25px;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.en-page .en-hero__vertical-col::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #d4a574;
  border-radius: 50%;
}
.en-page .en-hero__vertical-col span {
  opacity: 0;
  transition: opacity 0.1s ease;
}
.en-page .en-hero__vertical-col span.visible {
  opacity: 1;
}
.en-page .en-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #800015 0%, #4e070b 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.en-page .en-hero__btn span {
  transition: transform 0.3s ease;
}
.en-page .en-hero__btn:hover {
  box-shadow: 0 10px 30px rgba(128, 0, 21, 0.35);
  transform: translateY(-3px);
}
.en-page .en-hero__btn:hover span {
  transform: translateX(5px);
}
.en-page .en-hero__image {
  flex: 1;
  min-width: 0;
  position: relative;
}
.en-page .en-hero__image::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(128, 0, 21, 0.12) 0%, rgba(128, 0, 21, 0.05) 100%);
  border-radius: 20px;
  z-index: -1;
}
.en-page .en-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-height: 380px;
}
.en-page .en-hero__image--large img {
  max-height: 40vh;
}
.en-page .en-hero__main-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 32px;
  font-weight: 700;
  color: #4e070b;
  letter-spacing: 8px;
  padding: 30px 20px;
  border-radius: 30px;
  height: -moz-fit-content;
  height: fit-content;
  flex-shrink: 0;
}
.en-page .en-hero__main-title span {
  opacity: 0;
  transition: opacity 0.15s ease;
}
.en-page .en-hero__main-title span.visible {
  opacity: 1;
}
.en-page .en-hero__image-wrapper--large {
  flex: 1.5;
}
.en-page .en-hero--compact .en-hero__container {
  gap: 40px;
}
.en-page .en-hero--compact::before {
  width: 30%;
}
.en-page .en-circle-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.en-page .en-circle-title--center {
  justify-content: center;
}
.en-page .en-circle-title__chars {
  display: flex;
  gap: -8px;
}
.en-page .en-circle-title__char {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #800015 0%, #4e070b 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  letter-spacing: 0;
  transition: all 0.3s ease;
  animation: circlePopIn 0.4s ease backwards;
  margin-left: -8px;
  border: 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.en-page .en-circle-title__char:first-child {
  margin-left: 0;
}
.en-page .en-circle-title__char:nth-child(1) {
  animation-delay: 0s;
  z-index: 4;
}
.en-page .en-circle-title__char:nth-child(2) {
  animation-delay: 0.08s;
  z-index: 3;
}
.en-page .en-circle-title__char:nth-child(3) {
  animation-delay: 0.16s;
  z-index: 2;
}
.en-page .en-circle-title__char:nth-child(4) {
  animation-delay: 0.24s;
  z-index: 1;
}
.en-page .en-circle-title__char:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(128, 0, 21, 0.4);
}
.en-page .en-circle-title__en {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #5d5f5b;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@keyframes circlePopIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.en-page .en-process {
  padding: 80px 0;
  background: #ffffff;
}
.en-page .en-process__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.en-page .en-process__header {
  margin-bottom: 50px;
}
.en-page .en-process__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.en-page .en-process__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 40px;
  transition: all 0.4s ease;
  overflow: hidden;
}
.en-page .en-process__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #800015 0%, #4e070b 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.en-page .en-process__card:hover {
  border-color: rgba(128, 0, 21, 0.2);
  box-shadow: 0 20px 60px rgba(128, 0, 21, 0.1);
  transform: translateY(-5px);
}
.en-page .en-process__card:hover::before {
  opacity: 1;
}
.en-page .en-process__card:hover .en-process__card-btn {
  background: #800015;
  color: #ffffff;
}
.en-page .en-process__card-num {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(128, 0, 21, 0.1);
}
.en-page .en-process__card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(128, 0, 21, 0.1) 0%, rgba(128, 0, 21, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #800015;
}
.en-page .en-process__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #013f4c;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.en-page .en-process__card-desc {
  font-size: 15px;
  color: #5d5f5b;
  line-height: 1.8;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}
.en-page .en-process__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid #800015;
  border-radius: 30px;
  color: #800015;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.en-page .en-process__card-btn span {
  transition: transform 0.3s ease;
}
.en-page .en-process__card-btn:hover span {
  transform: translateX(4px);
}
.en-page .en-intro {
  background: linear-gradient(135deg, rgba(128, 0, 21, 0.03) 0%, rgba(128, 0, 21, 0.08) 100%);
  border-left: 4px solid #800015;
}
.en-page .en-intro__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.en-page .en-intro__icon {
  width: 50px;
  height: 50px;
  background: #800015;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.en-page .en-intro__content {
  flex: 1;
}
.en-page .en-intro__title {
  font-size: 18px;
  font-weight: 700;
  color: #800015;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.en-page .en-intro__text {
  font-size: 15px;
  color: #013f4c;
  line-height: 2;
  letter-spacing: 0.5px;
}
.en-page .en-about {
  padding: 100px 0;
}
.en-page .en-about__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 992px) {
  .en-page .en-about__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.en-page .en-about__visual {
  position: relative;
}
.en-page .en-about__image-stack {
  position: relative;
}
.en-page .en-about__image--main img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.en-page .en-about__image--overlay {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  z-index: 2;
}
.en-page .en-about__image--overlay img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  border: 5px solid #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .en-page .en-about__image--overlay {
    right: -20px;
    bottom: -30px;
  }
}
.en-page .en-about__stats {
  display: flex;
  gap: 30px;
  margin-top: 70px;
}
.en-page .en-about__stat {
  background: linear-gradient(135deg, #800015 0%, #4e070b 100%);
  padding: 25px 35px;
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(128, 0, 21, 0.3);
}
.en-page .en-about__stat-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}
.en-page .en-about__stat-label {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.9;
}
.en-page .en-about__content .en-circle-title {
  margin-bottom: 30px;
}
.en-page .en-about__desc {
  font-size: 16px;
  line-height: 2;
  color: #013f4c;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}
.en-page .en-about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.en-page .en-about__feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.en-page .en-about__feature:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(128, 0, 21, 0.1);
}
.en-page .en-about__feature:hover .en-about__feature-icon {
  background: linear-gradient(135deg, #800015 0%, #4e070b 100%);
  color: #ffffff;
}
.en-page .en-about__feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(128, 0, 21, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #800015;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.en-page .en-about__feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #013f4c;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.en-page .en-about__feature-text p {
  font-size: 14px;
  color: #5d5f5b;
  line-height: 1.6;
}
.en-page .en-section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.en-page .en-section-header__en {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #800015;
  letter-spacing: 1px;
}
.en-page .en-section-header__title {
  font-size: 24px;
  font-weight: 700;
  color: #013f4c;
  letter-spacing: 3px;
}
.en-page .en-section-header--light .en-section-header__en,
.en-page .en-section-header--light .en-section-header__title {
  color: #ffffff;
}
.en-page .en-content {
  padding: 80px 0;
  background: #ffffff;
}
.en-page .en-content__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.en-page .en-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.en-page .en-faq__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}
.en-page .en-faq__item:hover {
  padding-left: 10px;
}
.en-page .en-faq__item:hover .en-faq__num {
  background: #800015;
  color: #ffffff;
}
.en-page .en-faq__item:hover .en-faq__arrow {
  opacity: 1;
  transform: translateX(0);
}
.en-page .en-faq__num {
  width: 40px;
  height: 40px;
  background: rgba(128, 0, 21, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #800015;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.en-page .en-faq__question {
  flex: 1;
  font-size: 15px;
  color: #013f4c;
  letter-spacing: 0.5px;
  line-height: 1.5;
}
.en-page .en-faq__arrow {
  color: #800015;
  font-size: 18px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.en-page .en-news {
  margin-bottom: 20px;
}
.en-page .en-news-list {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 16px;
  overflow: hidden;
}
.en-page .en-news-list__item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 22px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-decoration: none;
}
.en-page .en-news-list__item:last-child {
  border-bottom: none;
}
.en-page .en-news-list__item:hover {
  background: rgba(128, 0, 21, 0.03);
}
.en-page .en-news-list__item:hover .en-news-list__day {
  color: #800015;
  transform: scale(1.05);
}
.en-page .en-news-list__item:hover .en-news-list__arrow {
  opacity: 1;
  transform: translateX(0);
  color: #800015;
}
.en-page .en-news-list__item:hover .en-news-list__title {
  color: #800015;
}
.en-page .en-news-list__date {
  text-align: left;
  flex-shrink: 0;
  min-width: 80px;
}
.en-page .en-news-list__month {
  display: block;
  font-size: 12px;
  color: #5d5f5b;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.en-page .en-news-list__day {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #013f4c;
  line-height: 1;
  transition: all 0.3s ease;
}
.en-page .en-news-list__content {
  flex: 1;
  min-width: 0;
}
.en-page .en-news-list__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #800015;
  margin-bottom: 6px;
}
.en-page .en-news-list__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #800015;
  border-radius: 50%;
}
.en-page .en-news-list__title {
  font-size: 15px;
  color: #013f4c;
  line-height: 1.6;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.en-page .en-news-list__arrow {
  font-size: 20px;
  color: #5d5f5b;
  opacity: 0.3;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.en-page .en-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding: 12px 28px;
  border: 2px solid #800015;
  border-radius: 30px;
  color: #800015;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.en-page .en-more-btn:hover {
  background: #800015;
  color: #ffffff;
}
.en-page .en-more-btn--light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.en-page .en-more-btn--light:hover {
  background: #ffffff;
  color: #800015;
  border-color: #ffffff;
}
.en-page .en-downloads {
  padding: 80px 0;
  background: linear-gradient(135deg, #4e070b 0%, #800015 100%);
}
.en-page .en-downloads__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.en-page .en-downloads__header {
  margin-bottom: 40px;
}
.en-page .en-downloads__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.en-page .en-downloads__item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}
.en-page .en-downloads__item:hover {
  padding-left: 15px;
  background: rgba(255, 255, 255, 0.05);
}
.en-page .en-downloads__item:hover .en-downloads__icon {
  background: #ffffff;
  color: #800015;
}
.en-page .en-downloads__date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  min-width: 85px;
}
.en-page .en-downloads__text {
  flex: 1;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.en-page .en-downloads__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.en-page .en-downloads-new {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}
.en-page .en-downloads-new__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.en-page .en-downloads-new__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .en-page .en-downloads-new__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .en-page .en-downloads-new__grid {
    grid-template-columns: 1fr;
  }
}
.en-page .en-download-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 35px 30px;
  background: #ffffff;
  border-radius: 16px;
  border-left: 4px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  overflow: hidden;
}
.en-page .en-download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(128, 0, 21, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.en-page .en-download-card:hover {
  transform: translateY(-8px);
  border-left-color: #800015;
  box-shadow: 0 20px 50px rgba(128, 0, 21, 0.12);
}
.en-page .en-download-card:hover::before {
  opacity: 1;
}
.en-page .en-download-card:hover .en-download-card__icon {
  background: linear-gradient(135deg, #800015 0%, #a33340 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}
.en-page .en-download-card:hover .en-download-card__btn {
  color: #800015;
  transform: translateX(5px);
}
.en-page .en-download-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(128, 0, 21, 0.08) 0%, rgba(128, 0, 21, 0.15) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #800015;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.en-page .en-download-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #013f4c;
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.en-page .en-download-card__desc {
  font-size: 14px;
  color: #5d5f5b;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.en-page .en-download-card__btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #a33340;
  transition: all 0.3s ease;
}
.en-page .en-regulations {
  padding: 80px 0;
  background: #ffffff;
}
.en-page .en-regulations__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.en-page .en-regulations__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.en-page .en-regulations__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 25px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}
.en-page .en-regulations__item:hover {
  background: #ffffff;
  border-left-color: #800015;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.en-page .en-regulations__date {
  font-size: 13px;
  color: #800015;
  font-weight: 500;
  flex-shrink: 0;
  min-width: 80px;
}
.en-page .en-regulations__text {
  font-size: 15px;
  color: #013f4c;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.en-page .en-regulations-dark {
  padding: 100px 0;
  background: linear-gradient(135deg, #4e070b 0%, rgb(40.56, 3.64, 5.72) 100%);
  position: relative;
  overflow: hidden;
}
.en-page .en-regulations-dark::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.en-page .en-regulations-dark__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.en-page .en-regulations-dark__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}
.en-page .en-regulations-dark__title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.en-page .en-regulations-dark__num {
  font-family: "Poppins", sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 0.8;
}
.en-page .en-regulations-dark__title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.en-page .en-regulations-dark__title span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.en-page .en-regulations-dark__more {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.en-page .en-regulations-dark__more:hover {
  color: #ffffff;
}
.en-page .en-regulations-dark__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) {
  .en-page .en-regulations-dark__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .en-page .en-regulations-dark__grid {
    grid-template-columns: 1fr;
  }
}
.en-page .en-regulations-dark__card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 25px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}
.en-page .en-regulations-dark__card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}
.en-page .en-regulations-dark__card:hover .en-regulations-dark__card-icon {
  background: #ffffff;
  color: #800015;
  transform: scale(1.1);
}
.en-page .en-regulations-dark__card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}
.en-page .en-regulations-dark__card-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 1px;
  line-height: 1.4;
}
.en-page .en-regulations-dark__card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.en-page .en-regulations-dark__card-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}
.en-page .en-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.en-page .en-breadcrumb a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
.en-page .en-breadcrumb a:hover {
  color: #ffffff;
}
.en-page .en-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
.en-page .en-breadcrumb__current {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}
.en-page .en-page-hero {
  background: linear-gradient(135deg, #800015 0%, #4e070b 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.en-page .en-page-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.en-page .en-page-hero__content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.en-page .en-page-hero__num {
  font-family: "Poppins", sans-serif;
  font-size: 100px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 0.8;
}
@media (max-width: 768px) {
  .en-page .en-page-hero__num {
    font-size: 60px;
  }
}
.en-page .en-page-hero__text h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 6px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .en-page .en-page-hero__text h1 {
    font-size: 28px;
    letter-spacing: 3px;
  }
}
.en-page .en-page-hero__en {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.en-page .en-page-hero__deco {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.en-page .en-news-list__container {
  max-width: 1400px;
  margin: 4vh auto;
  padding: 0 40px;
}
.en-page .en-news-list__intro {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 40px;
  margin-bottom: 40px;
  border-left: 4px solid #800015;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.en-page .en-news-list__intro p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  letter-spacing: 0.5px;
}
.en-page .en-news-list__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .en-page .en-news-list__toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}
.en-page .en-news-list__tabs {
  display: flex;
  gap: 8px;
  background: #ffffff;
  padding: 6px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.en-page .en-news-list__tab {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
.en-page .en-news-list__tab:hover {
  color: #800015;
  background: rgba(128, 0, 21, 0.05);
}
.en-page .en-news-list__tab--active {
  background: #800015;
  color: #ffffff;
}
.en-page .en-news-list__tab--active:hover {
  background: #800015;
  color: #ffffff;
}
.en-page .en-news-list__search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.en-page .en-news-list__search input {
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 14px;
  width: 240px;
  outline: none;
}
.en-page .en-news-list__search input::-moz-placeholder {
  color: #999;
}
.en-page .en-news-list__search input::placeholder {
  color: #999;
}
@media (max-width: 768px) {
  .en-page .en-news-list__search input {
    width: 100%;
  }
}
.en-page .en-news-list__search button {
  width: 44px;
  height: 44px;
  background: #800015;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.en-page .en-news-list__search button:hover {
  background: #4e070b;
}
.en-page .en-news-list__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.en-page .en-news-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 24px 30px;
  background: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.en-page .en-news-list__item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.en-page .en-news-list__item:hover .en-news-list__arrow {
  opacity: 1;
  transform: translateX(0);
  color: #800015;
}
@media (max-width: 768px) {
  .en-page .en-news-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
}
.en-page .en-news-list__item-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .en-page .en-news-list__item-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.en-page .en-news-list__item-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.en-page .en-news-list__tag {
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  flex-shrink: 0;
  letter-spacing: 1px;
}
.en-page .en-news-list__tag--teacher {
  background: rgba(128, 0, 21, 0.1);
  color: #800015;
}
.en-page .en-news-list__tag--training {
  background: rgba(212, 165, 116, 0.15);
  color: #a07040;
}
.en-page .en-news-list__title {
  font-size: 16px;
  font-weight: 500;
  color: #013f4c;
  line-height: 1.5;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .en-page .en-news-list__title {
    white-space: normal;
  }
}
.en-page .en-news-list__date {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
}
.en-page .en-news-list__arrow {
  color: #ccc;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .en-page .en-news-list__arrow {
    display: none;
  }
}
.en-page .en-news-list__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e8e8e8;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .en-page .en-news-list__footer {
    flex-direction: column;
    gap: 20px;
  }
}
.en-page .en-news-list__info {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.5px;
}
.en-page .en-news-list__info strong {
  color: #800015;
  font-weight: 600;
}
.en-page .en-news-list__pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}
.en-page .en-news-list__page {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  background: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
}
.en-page .en-news-list__page:hover {
  border-color: #800015;
  color: #800015;
}
.en-page .en-news-list__page--active {
  background: #800015;
  color: #ffffff;
  border-color: #800015;
}
.en-page .en-news-list__page--active:hover {
  background: #4e070b;
  color: #ffffff;
  border-color: #4e070b;
}
.en-page .en-news-list__page--nav {
  color: #999;
}
.en-page .en-news-list__page--nav:hover {
  color: #800015;
}
.en-page .en-news-list__per-page {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}
.en-page .en-news-list__per-page select {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  outline: none;
}
.en-page .en-news-list__per-page select:focus {
  border-color: #800015;
}
.en-page .en-header__nav-link--active {
  color: #800015;
  font-weight: 600;
}
.en-page .en-page-hero--detail {
  padding: 120px 0 40px;
}
.en-page .en-article {
  padding: 0 0 100px;
  background: #f8f9fa;
}
.en-page .en-article__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.en-page .en-article__content {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px 80px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.06);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .en-page .en-article__content {
    padding: 40px 24px;
    border-radius: 16px;
  }
}
.en-page .en-article__header {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}
.en-page .en-article__tag {
  display: inline-block;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(128, 0, 21, 0.1);
  color: #800015;
  border-radius: 25px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.en-page .en-article__title {
  font-size: 32px;
  font-weight: 700;
  color: #013f4c;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .en-page .en-article__title {
    font-size: 22px;
  }
}
.en-page .en-article__meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.en-page .en-article__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #888;
}
.en-page .en-article__meta-item svg {
  color: #800015;
}
.en-page .en-article__body p {
  font-size: 16px;
  color: #444;
  line-height: 2;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.en-page .en-article__link {
  color: #800015;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}
.en-page .en-article__link:hover {
  color: #4e070b;
}
.en-page .en-article__image-text {
  display: flex;
  gap: 40px;
  margin: 50px 0;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .en-page .en-article__image-text {
    flex-direction: column;
  }
}
.en-page .en-article__image-text--left .en-article__figure {
  order: -1;
}
.en-page .en-article__image-text--right .en-article__figure {
  order: 1;
}
@media (max-width: 768px) {
  .en-page .en-article__image-text--right .en-article__figure {
    order: -1;
  }
}
.en-page .en-article__figure {
  flex: 0 0 45%;
}
.en-page .en-article__figure img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.en-page .en-article__figure figcaption {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 12px;
  letter-spacing: 0.5px;
}
.en-page .en-article__figure--center {
  flex: 1;
  margin: 50px 0;
}
.en-page .en-article__figure--center img {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}
.en-page .en-article__text {
  flex: 1;
}
.en-page .en-article__text p {
  margin-bottom: 16px;
}
.en-page .en-article__section-title {
  font-size: 20px;
  font-weight: 700;
  color: #013f4c;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #800015;
  display: inline-block;
  letter-spacing: 1px;
}
.en-page .en-article__table-section {
  margin: 50px 0;
}
.en-page .en-article__table-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.en-page .en-article__table-wrap {
  overflow-x: auto;
}
.en-page .en-article__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.en-page .en-article__table th {
  background: #4e070b;
  color: #ffffff;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}
.en-page .en-article__table td {
  padding: 16px 20px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #eee;
}
.en-page .en-article__table tbody tr {
  transition: background 0.3s ease;
}
.en-page .en-article__table tbody tr:hover {
  background: #f8f9fa;
}
.en-page .en-article__table tbody tr:last-child td {
  border-bottom: none;
}
.en-page .en-article__gallery-section {
  margin: 60px 0;
}
.en-page .en-article__gallery {
  display: flex;
  align-items: center;
  gap: 20px;
}
.en-page .en-article__gallery-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.en-page .en-article__gallery-nav:hover {
  background: #800015;
  border-color: #800015;
  color: #ffffff;
}
@media (max-width: 768px) {
  .en-page .en-article__gallery-nav {
    display: none;
  }
}
.en-page .en-article__gallery-track {
  flex: 1;
  overflow: hidden;
}
.en-page .en-article__gallery-slides {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.en-page .en-article__gallery-item {
  flex: 0 0 calc(25% - 15px);
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.en-page .en-article__gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.en-page .en-article__gallery-item img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .en-page .en-article__gallery-item {
    flex: 0 0 calc(33.333% - 14px);
  }
}
@media (max-width: 768px) {
  .en-page .en-article__gallery-item {
    flex: 0 0 calc(50% - 10px);
  }
}
.en-page .en-article__links-section {
  margin: 60px 0;
}
.en-page .en-article__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .en-page .en-article__links {
    grid-template-columns: 1fr;
  }
}
.en-page .en-article__links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: #f8f9fa;
  border-radius: 12px;
  font-size: 15px;
  color: #444;
  transition: all 0.3s ease;
}
.en-page .en-article__links li a svg {
  color: #800015;
  flex-shrink: 0;
}
.en-page .en-article__links li a:hover {
  background: rgba(128, 0, 21, 0.08);
  color: #800015;
  transform: translateX(5px);
}
.en-page .en-article__files-section {
  margin: 60px 0 0;
}
.en-page .en-article__files {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.en-page .en-article__files li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #f8f9fa;
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.en-page .en-article__files li a:hover {
  background: #ffffff;
  border-color: #800015;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.en-page .en-article__files li a:hover .en-article__file-icon {
  background: #800015;
  color: #ffffff;
}
.en-page .en-article__file-icon {
  width: 48px;
  height: 48px;
  background: rgba(128, 0, 21, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #800015;
  transition: all 0.3s ease;
}
.en-page .en-article__file-name {
  flex: 1;
  font-size: 15px;
  color: #444;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.en-page .en-article__file-type {
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  background: #e8e8e8;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.en-page .en-article__footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}
.en-page .en-article__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background: #800015;
  border-radius: 10px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
.en-page .en-article__back:hover {
  background: #4e070b;
  transform: translateX(-5px);
}
.en-page .en-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.en-page .en-lightbox.active {
  display: flex;
}
.en-page .en-lightbox__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.en-page .en-lightbox__close:hover {
  transform: rotate(90deg);
}
.en-page .en-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.en-page .en-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.en-page .en-lightbox__nav--prev {
  left: 30px;
}
.en-page .en-lightbox__nav--next {
  right: 30px;
}
.en-page .en-lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
}
.en-page .en-lightbox__content img {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.en-page .en-footer-new__main {
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  padding: 80px 0 60px;
  border-top: 4px solid #800015;
}
.en-page .en-footer-new__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.en-page .en-footer-new__main > .en-page .en-footer-new__container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 992px) {
  .en-page .en-footer-new__main > .en-page .en-footer-new__container {
    flex-direction: column;
    gap: 50px;
  }
}
.en-page .en-footer-new__brand {
  flex: 0 0 380px;
}
@media (max-width: 992px) {
  .en-page .en-footer-new__brand {
    flex: 1;
  }
}
.en-page .en-footer-new__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.en-page .en-footer-new__logo img {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}
.en-page .en-footer-new__logo-text span {
  display: block;
  font-size: 12px;
  color: #5d5f5b;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.en-page .en-footer-new__logo-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #4e070b;
  letter-spacing: 2px;
}
.en-page .en-footer-new__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.en-page .en-footer-new__social {
  display: flex;
  gap: 12px;
}
.en-page .en-footer-new__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
}
.en-page .en-footer-new__social a:hover {
  background: #800015;
  border-color: #800015;
  color: #ffffff;
  transform: translateY(-3px);
}
.en-page .en-footer-new__nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .en-page .en-footer-new__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .en-page .en-footer-new__nav {
    grid-template-columns: 1fr;
  }
}
.en-page .en-footer-new__col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #4e070b;
  margin-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}
.en-page .en-footer-new__col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #800015;
}
.en-page .en-footer-new__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.en-page .en-footer-new__col li {
  margin-bottom: 12px;
}
.en-page .en-footer-new__col a {
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.5px;
}
.en-page .en-footer-new__col a:hover {
  color: #800015;
  transform: translateX(5px);
}
.en-page .en-footer-new__contact li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.en-page .en-footer-new__contact span {
  font-size: 14px;
  color: #555;
  letter-spacing: 0.5px;
}
.en-page .en-footer-new__contact-label {
  font-size: 12px !important;
  color: #5d5f5b !important;
  font-weight: 500;
}
.en-page .en-footer-new__bottom {
  background: #4e070b;
  padding: 16px 0;
}
.en-page .en-footer-new__bottom .en-footer-new__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .en-page .en-footer-new__bottom .en-footer-new__container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
.en-page .en-footer-new__bottom-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.en-page .en-footer-new__bottom-left span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}
.en-page .en-footer-new__divider {
  color: rgba(255, 255, 255, 0.3) !important;
}
.en-page .en-footer-new__bottom-right {
  display: flex;
  gap: 24px;
}
@media (max-width: 480px) {
  .en-page .en-footer-new__bottom-right {
    flex-direction: column;
    gap: 8px;
  }
}
.en-page .en-footer-new__stat {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
}
.en-page .en-footer-new__copyright {
  background: rgb(54.6, 4.9, 7.7);
  padding: 18px 0;
}
.en-page .en-footer-new__copyright .en-footer-new__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .en-page .en-footer-new__copyright .en-footer-new__container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
.en-page .en-footer-new__copyright p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}
.en-page .en-footer-new__links {
  display: flex;
  gap: 24px;
}
.en-page .en-footer-new__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}
.en-page .en-footer-new__links a:hover {
  color: #ffffff;
}
.en-page .en-footer {
  background: #f5f5f5;
  padding: 50px 0 20px;
  border-top: 4px solid #800015;
}
.en-page .en-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.en-page .en-footer__left {
  flex: 1;
}
.en-page .en-footer__privacy {
  font-size: 14px;
  font-weight: 500;
  color: #013f4c;
  margin-bottom: 20px;
}
.en-page .en-footer__privacy a {
  color: #800015;
  text-decoration: underline;
}
.en-page .en-footer__info p {
  font-size: 13px;
  color: #5d5f5b;
  line-height: 1.8;
  letter-spacing: 0.5px;
}
.en-page .en-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.en-page .en-footer__logo img {
  height: 60px;
}
.en-page .en-footer__stats {
  display: flex;
  gap: 25px;
}
.en-page .en-footer__stat {
  text-align: right;
}
.en-page .en-footer__stat-label {
  display: block;
  font-size: 12px;
  color: #5d5f5b;
  margin-bottom: 4px;
}
.en-page .en-footer__stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #013f4c;
}
.en-page .en-footer__copyright {
  max-width: 1400px;
  margin: 30px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid #e0e0e0;
  font-size: 13px;
  color: #5d5f5b;
  text-align: center;
  letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
  .en-page .en-header__container {
    padding: 0 20px;
  }
  .en-page .en-header__nav {
    display: none;
  }
  .en-page .en-header__sitemap {
    display: none;
  }
  .en-page .en-header__actions {
    display: none;
  }
  .en-page .en-mobile-nav {
    top: 80px;
  }
  .en-page .en-hero {
    padding: 40px 0 60px;
  }
  .en-page .en-hero__container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  .en-page .en-hero__text {
    max-width: 100%;
    text-align: center;
  }
  .en-page .en-hero__badge {
    font-size: 12px;
    padding: 8px 16px;
  }
  .en-page .en-hero__title {
    font-size: 32px;
  }
  .en-page .en-hero__image-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
  .en-page .en-hero__vertical-text {
    flex-direction: row;
    justify-content: center;
    padding-top: 0;
    margin-top: 20px;
  }
  .en-page .en-hero__vertical-col {
    font-size: 14px;
    letter-spacing: 6px;
    padding: 15px 10px;
  }
  .en-page .en-hero__image {
    max-width: 100%;
  }
  .en-page .en-hero__image::before {
    top: -10px;
    right: -10px;
  }
  .en-page .en-process__cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .en-page .en-content__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .en-page .en-regulations__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .en-page .en-header {
    height: 70px;
  }
  .en-page .en-header__logo-img {
    width: 50px;
  }
  .en-page .en-header__logo-sub {
    display: none;
  }
  .en-page .en-header__logo-title {
    font-size: 16px;
  }
  .en-page .en-mobile-nav {
    top: 70px;
    max-height: calc(100vh - 70px);
  }
  .en-page .en-hero {
    padding: 30px 0 50px;
  }
  .en-page .en-hero::before {
    display: none;
  }
  .en-page .en-hero__badge {
    font-size: 11px;
    padding: 6px 12px;
    letter-spacing: 1px;
  }
  .en-page .en-hero__vertical-text {
    display: none;
  }
  .en-page .en-hero__title {
    font-size: 26px;
    letter-spacing: 3px;
  }
  .en-page .en-hero__subtitle {
    font-size: 14px;
  }
  .en-page .en-process {
    padding: 50px 0;
  }
  .en-page .en-process__card {
    padding: 30px 25px;
  }
  .en-page .en-process__card-num {
    font-size: 36px;
    top: 20px;
    right: 20px;
  }
  .en-page .en-content {
    padding: 50px 0;
  }
  .en-page .en-downloads {
    padding: 50px 0;
  }
  .en-page .en-downloads__item {
    flex-wrap: wrap;
    gap: 10px;
  }
  .en-page .en-downloads__date {
    width: 100%;
  }
  .en-page .en-downloads__text {
    width: calc(100% - 60px);
  }
  .en-page .en-footer__container {
    flex-direction: column;
    gap: 30px;
  }
  .en-page .en-footer__right {
    align-items: flex-start;
  }
  .en-page .en-footer__stats {
    justify-content: flex-start;
  }
  .en-page .en-footer__stat {
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */