/* Start custom CSS for text-editor, class: .elementor-element-4ed1d2d3 */.article-container {
  max-width: 850px;
  margin: 0 auto;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: #222;
  line-height: 1.8;
}

.hero-image {
  text-align: center;
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  height: auto;
}

/* --- 主文 --- */
.article-content p {
  margin-bottom: 16px;
  font-size: 16px;
}

.article-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.article-content li {
  margin-bottom: 8px;
}

.note {
  font-size: 14px;
  color: #666;
}

.conclusion {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  margin-top: 40px;
  color: #444;
}

/* --- CTA 區塊 --- */
.cta-box {
  background: #f5f9ff;
  border-left: 4px solid #0066cc;
  padding: 25px;
  border-radius: 6px;
  margin: 35px 0;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.cta-box.highlight {
  background: #fff6e5;
  border-left-color: #ff9800;
}

.cta-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #003366;
}

.cta-box p {
  margin: 0 0 12px 0;
}

.cta-button {
  display: inline-block;
  background: #0073e6;
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #005bb5;
}

/* --- FAQ 區塊 --- */
.faq-container {
  margin-top: 50px;
  border-top: 2px solid #eee;
  padding-top: 20px;
}

.faq-container h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-container details {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-container summary {
  cursor: pointer;
  padding: 15px 18px;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  position: relative;
  background: #f9f9f9;
  transition: background 0.2s ease;
}

.faq-container summary::marker {
  display: none;
}

.faq-container summary::after {
  content: "＋";
  position: absolute;
  right: 18px;
  font-size: 20px;
  color: #888;
  transition: transform 0.2s ease;
}

.faq-container details[open] summary::after {
  content: "－";
  color: #0073e6;
}

.faq-container details[open] summary {
  background: #eef6ff;
}

.faq-container p {
  margin: 0;
  padding: 15px 18px;
  font-size: 15px;
  line-height: 1.7;
  background: #fff;
}

/* --- 響應式 --- */
@media (max-width: 768px) {
  .article-container {
    padding: 10px;
  }
  .cta-box {
    padding: 20px;
  }
  .cta-title {
    font-size: 17px;
  }
  .faq-container summary {
    font-size: 15px;
  }
  .faq-container p {
    font-size: 14px;
  }
}/* End custom CSS */