/* Start custom CSS for section, class: .elementor-element-e94bede */<style>
.immigration-article {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #2b2b2b;
  line-height: 1.8;
  background-color: #ffffff;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.immigration-article h2 {
  color: #003366;
  border-left: 5px solid #0a4b78;
  padding-left: 12px;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.5rem;
}

.immigration-article h3 {
  color: #0a4b78;
  margin-top: 35px;
  font-weight: 500;
  font-size: 1.2rem;
}

.immigration-article p {
  margin-bottom: 16px;
}

.immigration-article ul {
  margin-left: 25px;
  list-style-type: disc;
}

.cta-box {
  text-align: center;
  margin: 40px 0;
}

.cta-btn {
  background-color: #0a4b78;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background-color: #0072b5;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background-color: #005b94;
}

/* FAQ Section */
.faq-section {
  background-color: #f4f6f8;
  padding: 30px;
  border-radius: 8px;
  margin-top: 60px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
  color: #003366;
  font-weight: 600;
  margin-bottom: 25px;
  border-left: 5px solid #0a4b78;
  padding-left: 12px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
}

/* 隱藏 checkbox */
.faq-item input[type="checkbox"] {
  display: none;
}

/* 問題樣式 */
.faq-question {
  display: block;
  cursor: pointer;
  padding: 14px 12px;
  background: #fff;
  color: #0a4b78;
  font-weight: 600;
  position: relative;
  transition: background-color 0.3s ease;
}

/* 加號／減號圖示 */
.faq-question::after {
  content: "＋";
  position: absolute;
  right: 15px;
  font-size: 18px;
  color: #0a4b78;
  transition: transform 0.3s ease;
}

/* 當展開時變成減號 */
.faq-item input[type="checkbox"]:checked + .faq-question::after {
  content: "－";
}

/* hover 效果 */
.faq-question:hover {
  background-color: #e8f1f7;
}

/* 答案區塊 */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  padding: 0 12px;
}

/* 展開時顯示 */
.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 300px;
  padding: 10px 12px;
}

.faq-answer p {
  margin: 10px 0;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}/* End custom CSS */