/* Start custom CSS for text-editor, class: .elementor-element-50fc82d7 *//* ===============================
   🎨 全域設定 (Global Styles)
   =============================== */
:root {
  --ek-blue: #0077cc;
  --ek-blue-dark: #005b9f;
  --ek-gray-bg: #f9fafc;
  --ek-light-blue-bg: #f2f8ff;
  --ek-warning: #ff6666;
}

.ek-immigration-layout {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #333;
  line-height: 1.8;
}

/* ===============================
   📦 基本段落 (Section Blocks)
   =============================== */
.ek-section {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ek-section.intro {
  background: var(--ek-light-blue-bg);
  border-left: 6px solid var(--ek-blue);
}

.ek-section.warning-box {
  border: 2px solid var(--ek-warning);
  background: #fff5f5;
  color: #333;
  font-weight: 500;
}

.ek-section.cta-block {
  background: #e8f3ff;
  border: 1px solid #cce0ff;
  text-align: center;
}

.ek-section.contact a {
  color: var(--ek-blue);
  font-weight: 500;
}

/* ===============================
   💡 CTA 按鈕 (Reusable Buttons)
   =============================== */
.ek-cta-btn {
  display: inline-block;
  background-color: var(--ek-blue);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 6px;
  margin: 8px 5px;
  transition: all 0.3s ease;
  text-align: center;
}

.ek-cta-btn:hover {
  background-color: var(--ek-blue-dark);
}

.ek-cta-btn.small {
  font-size: 14px;
  padding: 6px 14px;
}

.ek-cta-btn.large {
  font-size: 18px;
  padding: 14px 28px;
}

/* CTA 顏色變體（方便快速換主題） */
.ek-cta-btn.outline {
  background: transparent;
  color: var(--ek-blue);
  border: 2px solid var(--ek-blue);
}

.ek-cta-btn.outline:hover {
  background: var(--ek-blue);
  color: #fff;
}

/* ===============================
   🖼️ 圖片置中 + RWD 適配
   =============================== */
.ek-img-center img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

/* 讓圖片在 column 中垂直水平置中 */
.ek-img-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   🏁 Footer 區域
   =============================== */
.ek-footer {
  text-align: center;
  font-size: 14px;
  color: #555;
  background: var(--ek-gray-bg);
  padding: 25px;
  border-radius: 8px;
  line-height: 1.7;
}

/* ===============================
   📱 RWD 手機版調整
   =============================== */
@media (max-width: 768px) {
  .ek-section {
    padding: 18px;
  }
  .ek-cta-btn {
    display: block;
    width: 100%;
    margin: 10px auto;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-6489c7f */.faq-section {
  background: #f5f8fa;
  color: #333;
  font-family: "Noto Sans TC", Arial, sans-serif;
  padding: 40px 20px;
  line-height: 1.7;
}

.faq-section .content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2, 
.faq-section h3 {
  color: #1a3e72;
  margin-top: 30px;
}

.faq-section .intro {
  background: #ffffff;
  border: 1px solid #d1d8e0;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  text-align: center;
}

.faq-section .intro a.cta {
  display: inline-block;
  background: #1a3e72;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

.faq-section .painpoints ul {
  list-style: none;
  padding: 0;
}

.faq-section .painpoints ul li {
  background: #ffffff;
  border: 1px solid #d1d8e0;
  border-radius: 6px;
  padding: 15px 20px 15px 45px;
  margin-bottom: 10px;
  position: relative;
}

.faq-section .painpoints ul li::before {
  content: "🫨";
  position: absolute;
  left: 15px;
  top: 13px;
  font-size: 18px;
}

.faq-section .case-study {
  background: #ffffff;
  border: 1px solid #d1d8e0;
  padding: 25px;
  border-radius: 8px;
}

.faq-section .case-study ul {
  padding-left: 20px;
}

.faq-section .case-study .highlight {
  color: #1a3e72;
  font-weight: 600;
}

.faq-section .cta-bottom {
  text-align: center;
  margin-top: 40px;
}

.faq-section .cta-bottom a.cta {
  display: inline-block;
  background: #1a3e72;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 5px;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.faq-section .cta-bottom a.cta:hover {
  background: #244f95;
}

@media (max-width: 600px) {
  .faq-section {
    padding: 20px 10px;
  }
  .faq-section .intro,
  .faq-section .case-study {
    padding: 15px;
  }
  .faq-section .cta-bottom a.cta {
    font-size: 16px;
    padding: 14px 22px;
  }
}/* End custom CSS */