/* Start custom CSS for text-editor, class: .elementor-element-623f6eef */.article-uk-child {
  font-family: "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.8;
  color: #333;
  max-width: 850px;      /* 限制文章最大寬度，避免過寬 */
  margin: 0 auto;        /* 置中 */
  padding: 20px 15px;
}

.article-uk-child h1,
.article-uk-child h2,
.article-uk-child h3 {
  margin: 1.5em 0 0.8em;
  line-height: 1.4;
  font-weight: bold;
  color: #222;
}

.article-uk-child p {
  margin: 0 0 1.2em;
}

.article-uk-child ul,
.article-uk-child ol {
  margin: 0 0 1.5em 2em;
  padding: 0;
}

.article-uk-child img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em auto;      /* 圖片置中，與段落留白 */
}

.article-uk-child .cta {
  background: #f9f9f9;
  border-left: 4px solid #2258b9;
  padding: 1em 1.2em;
  margin: 2em 0;
  font-weight: bold;
  color: #2258b9;
  border-radius: 4px;    /* 圓角 */
}

.article-uk-child a {
  color: #2258b9;
  text-decoration: none;
  transition: 0.3s ease;
}

.article-uk-child a:hover {
  text-decoration: underline;
}

/* --- FAQ Section Style --- */
.uk-faq {
  background: #f9fbff;
  border: 1px solid #e1e6ef;
  border-radius: 8px;
  padding: 25px 20px;
  margin: 40px 0;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Microsoft JhengHei", Arial, sans-serif;
}

.uk-faq .faq-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  border-left: 5px solid #2258b9;
  padding-left: 10px;
  margin-bottom: 1.2em;
}

.uk-faq .faq-item {
  border-bottom: 1px solid #dbe2ef;
  padding: 10px 0;
  position: relative;
}

.uk-faq .faq-question {
  display: block;
  cursor: pointer;
  font-weight: 600;
  color: #2258b9;
  font-size: 17px;
  padding-right: 25px;
  transition: color 0.3s ease;
}

.uk-faq .faq-question:hover {
  color: #0e3a8a;
}

.uk-faq .faq-toggle {
  display: none;
}

/* ▼ icon before question */
.uk-faq .faq-question::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 10px;
  font-size: 20px;
  color: #2258b9;
  transition: transform 0.3s ease;
}

/* when open */
.uk-faq .faq-toggle:checked + .faq-question::after {
  content: "－";
  transform: rotate(180deg);
}

/* hidden by default */
.uk-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* show when checked */
.uk-faq .faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
  padding-top: 10px;
}

.uk-faq .faq-answer p {
  color: #333;
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
}

.uk-faq a {
  color: #2258b9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.uk-faq a:hover {
  text-decoration: underline;
  color: #0e3a8a;
}

@media (max-width: 768px) {
  .uk-faq {
    padding: 18px;
  }
  .uk-faq .faq-question {
    font-size: 16px;
  }
  .uk-faq .faq-answer p {
    font-size: 14.5px;
  }
}/* End custom CSS */