 /* --------- Global --------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Arial, sans-serif;
    }

    body {
      background: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }
    html{
      scroll-behavior: smooth;
    }
    section{
      scroll-margin-top: 60px;
    }
    h2{
      font-size: 2.5rem;
      font-weight: 600;
    }
    h1{
      font-size: 2.7rem;
      font-weight: 600;
    }

    p {
      margin-bottom: 15px;
      color: #555;
      font-size: 18px;
    }

    a {
      text-decoration: none;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }


    /* --------- Navbar --------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: 0.3s;
}

nav .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #008060;
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 0px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links li a {
  color: #333;
  font-weight: 500;
  transition: 0.3s;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: #333;
  cursor: pointer;
}

/* --------- Mobile View --------- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: #fff;
    width: 220px;
    height: 100vh;
    padding: 40px 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }
}

    /* --------- Hero --------- */

/* -------- Intro Section -------- */
.intro {
  padding: 180px 80px 140px 80px;
  background: linear-gradient(135deg, #e0fff4, #f0fff8);
  font-family: 'Arial', sans-serif;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.intro-text {
  flex: 1 1 500px;
}

.intro-text h1 {
  font-size: 2.8rem;
  color: #008060;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #444;
}

.intro-buttons a {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(45deg, #008060, #00c896);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #004d40, #008060);
  transform: translateY(-3px);
}

.btn-secondary {
  background: #fff;
  color: #008060;
  border: 2px solid #008060;
}

.btn-secondary:hover {
  background: #008060;
  color: #fff;
  transform: translateY(-3px);
}

.btn-primary i, .btn-secondary i {
  margin-right: 8px;
}

.intro-image {
  flex: 1 1 450px;
  text-align: center;
}

.intro-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.intro-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:992px){
  .intro-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .intro-text h1 {
    font-size: 2.2rem;
  }
  .intro-text p {
    font-size: 1.1rem;
  }
  .intro-buttons a {
    margin-bottom: 15px;
  }
  .intro-image img {
    max-width: 90%;
  }
}
@media(max-width: 576px){
  .intro-image {
    flex: 1 1 206px;
    text-align: center;
}
.intro {
    padding: 100px 20px 20px 20px;
}
}

    /* --------- Features --------- */


  #features {
    padding: 40px 20px;
    background: #f9f9f9;
  }

  #features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #008060;
    margin-bottom: 20px;
  }

  #features p.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1.1rem;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 30px;
  }

  .feature-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .feature-box::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eefffa, #dcdcdc);
    transition: 0.4s;
    z-index: 0;
  }

  .feature-box:hover::before {
    top: 0;
  }

  .feature-box i {
    font-size: 45px;
    color: #008060;
    margin-bottom: 15px;
    transition: 0.4s;
    z-index: 1;
    position: relative;
  }

  .feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    z-index: 1;
    position: relative;
  }

  .feature-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    z-index: 1;
    position: relative;
  }

  .feature-box:hover i,
  .feature-box:hover h3,
  .feature-box:hover p {
    color: #000;
  }

    /* --------- How it Works --------- */
    #how{
      padding: 40px 20px;
    }
 .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px,1fr));
  gap: 25px;
  margin-top: 30px;
}

.step {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step i {
  font-size: 40px;
  color: #00c896;
  margin-bottom: 15px;
  transition: 0.4s;
}

.step h3 {
  font-size: 1.5rem;
  color: #008060;
  margin-bottom: 15px;
}

.step p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Hover Animation */
.step::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eefffa, #dcdcdc);
  transition: 0.4s;
  z-index: 0;
}

.step:hover::before {
  top: 0;
}

.step:hover i,
.step:hover h3,
.step:hover p {
  color: #000;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}

/* Responsive */
@media(max-width:768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

    /* --------- Testimonials --------- */
   #testimonials {
  padding: 40px 20px;
  background: linear-gradient(135deg, #e0fff4, #f9fff9);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #00c896;
}

.testimonial-card p {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 10px;
  color: #008060;
}

.stars i {
  color: #f1c40f;
  margin: 0 2px;
}

/* Responsive */
@media(max-width:768px){
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* -------- Pricing Section -------- */
#pricing {
  padding: 40px 20px;
  background: #fff;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
}

.plan {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.plan i {
  font-size: 45px;
  color: #008060;
  margin-bottom: 15px;
}

.plan h3 {
  font-size: 1.6rem;
  color: #008060;
  margin-bottom: 10px;
}

.plan .price {
  font-size: 2rem !important;
  color: #00c896;
  margin-bottom: 15px;
}

.plan ul {
  margin-bottom: 20px;
  color: #555;
  text-align: left;
  margin-left: 20px;
}

.plan ul li {
  margin: 10px 0;
  position: relative;
}



.plan .btn {
  display: inline-block;
  background: #00c896;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s;
}
.plan .btn:hover {
  background: #008060;
  transform: translateY(-3px);
}

/* Hover effect */
.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  background: #f0fff8;
}

/* Recommended plan highlight */
.plan.recommended {
  border: 3px solid #008060;
  transform: scale(1.05);
  background: linear-gradient(135deg,#00c896,#008060);
  color: #fff;
}

.plan.recommended h3,
.plan.recommended .price,
.plan.recommended ul li {
  color: #fff;
}

.plan.recommended ul li::before {
  color: #fff;
}

/* Responsive */
@media(max-width:768px){
  .pricing {
    grid-template-columns: 1fr;
  }
}
    /* --------- Blog Section --------- */
   #blog {
  padding: 40px 20px;
  background: #f0fff8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.post-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.post-card i {
  font-size: 40px;
  color: #00c896;
  margin-bottom: 15px;
}

.post-card h3 {
  font-size: 1.5rem;
  color: #008060;
  margin-bottom: 15px;
}

.post-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-card .btn {
  display: inline-block;
  background: #00c896;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.3s;
}
.post-card .btn:hover {
  background: #008060;
  transform: translateY(-3px);
}

/* Hover effect */
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width:768px){
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
    /* --------- FAQ --------- */
    #faq {
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
}

.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.faq-item h3 {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 18px 25px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 16px;
  transition: background 0.3s;
}

.faq-item h3:hover {
  background: linear-gradient(135deg, #eefffa, #dcdcdc);
  color: #000;
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  margin: 0;
  color: #555;
  line-height: 1.6;
  background: #f9fff9;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active p {
  max-height: 200px;
  padding: 15px 25px;
}

/* Icon rotation */
.faq-item h3 i {
  transition: transform 0.4s ease;
}

.faq-item.active h3 i {
  transform: rotate(180deg);
}

/* Responsive */
@media(max-width:768px){
  .faq-item h3 {
    font-size: 1rem;
  }
  .faq-item p {
    font-size: 0.95rem;
  }
}

    /* --------- Contact --------- */
    .contact {
  padding: 40px 20px;
  background: linear-gradient(135deg, #e0fff4, #f0fff8);
  font-family: 'Arial', sans-serif;
}

.contact form {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.contact form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.contact .input-group {
  position: relative;
  margin-bottom: 20px;
}

.contact .input-group i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #008060;
  font-size: 18px;
  transition: 0.3s;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #ddd;
  border-radius: 12px;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #00c896;
  box-shadow: 0 0 10px rgba(0,200,150,0.2);
}

.contact button {
  width: 100%;
  background: linear-gradient(45deg, #008060, #00c896);
  color: #fff;
  border: none;
  padding: 15px 0;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact button:hover {
  background: linear-gradient(45deg, #004d40, #008060);
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width:768px){
  .contact form {
    padding: 30px 20px;
  }
}

    /* --------- Footer --------- */
footer {
  background: #008060;
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left h2 {
  margin-bottom: 10px;
}

.footer-left p {
  color: #fff;
  font-size: 0.95rem;
}

.footer-center ul {
  list-style: none;
  display: inline-flex;
  gap: 20px;
  padding: 0;
  margin: 0 auto;
}

.footer-center ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-center ul li a:hover {
  color: #fff;
}

.footer-right a {
  color: #fff;
  margin-left: 15px;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.footer-right a:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 900px;
  margin: 20px auto 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.5;
}
.footer-disclaimer p{
  color: #fff;
  font-size: 15px;
  margin-top: 14px;
  color: #fff;
}

/* Responsive */
@media(max-width:768px){
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-right a {
    margin: 0 10px;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    padding: 0 10px;
  }



  h2{
    font-size: 1.7rem !important;
    font-weight: 700;
  }
  .hero{
    height: 100vh !important;
  }
  h1{
    font-size: 2rem !important;
  }
  .logo{
    font-size: 1.2rem !important;
  }
}

/* ===== Testimonials Stars (SVG) ===== */
.stars{
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:14px;
  line-height:0; /* 避免 svg baseline 留白 */
}

/* 每颗星的容器，确保可点击区域/对齐一致 */
.stars .star{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
}

/* 默认星：填充 */
.stars .star-svg{
  width:18px;
  height:18px;
  display:block; /* 彻底消除 baseline 空隙 */
  color:#008060; /* 控制 currentColor */
  fill: currentColor; /* 让 path 填充 */
}

/* 半星：使用你 SVG 里的 linearGradient 填充 + 描边 */
.stars .star.half .star-svg{
  overflow:visible;
}

/* 半星那颗 path 里已经写了 fill:url(#halfFill) + stroke，
   这里补一个兜底，避免某些浏览器把 transparent 当成黑色 */
.stars .star.half .star-svg stop:last-child{
  stop-color: transparent;
}

/* 可选：如果你的卡片背景是深色（例如 recommended），星星变白 */
.testimonial-card.is-dark .stars .star-svg{
  color:#fff;
}

/* 可选：移动端更紧凑 */
@media (max-width: 480px){
  .stars{ gap:5px; }
  .stars .star{ width:16px; height:16px; }
  .stars .star-svg{ width:16px; height:16px; }
}

.testimonial-card .stars{
  justify-content: center;
}

.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(370px, 1fr));
  gap:32px;
}

.step{
  text-align:center;
}

.step-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}

.step .icon-svg{
  width:34px;
  height:34px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  color:#008060;
}
.features{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(370px, 1fr));
  gap:36px;
}

.feature-box{
  text-align:center;
}

.feature-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}

.feature-box .icon-svg{
  width:36px;
  height:36px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  color:#008060;
}

    /* 保持与你现有模板一致：只补缺口，不大改风格 */
    .page-hero {
      padding-top: 110px;
      padding-bottom: 20px;
    }
    .page-hero .container {
      text-align: center;
    }
    .page-hero h1 {
      margin-bottom: 12px;
    }
    .page-hero p {
      max-width: 760px;
      margin: 0 auto;
      color: #555;
      line-height: 1.7;
    }

    /* 博客列表区域：容器与间距修复 */
    #blog-list-section {
      padding: 40px 0 70px;
    }
    #blog-list-section h2 {
      text-align: center;
      color: #008060;
      margin-bottom: 30px;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
      gap: 22px;
    }
    .post-card {
      height: 100%;
    }

    /* 文章卡片的小图标（SVG），避免依赖 FontAwesome */
    .post-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      margin-bottom: 10px;
      color: #008060;
    }
    .post-icon svg {
      width: 22px;
      height: 22px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* 顶部导航下的页面内容间距 */
    .page-wrap{
      padding-top: 110px;
      padding-bottom: 70px;
    }

    .policy-header{
      text-align: center;
      margin-bottom: 26px;
    }
    .policy-header h1{
      margin-bottom: 10px;
    }
    .policy-header p{
      max-width: 760px;
      margin: 0 auto;
      color: #555;
      line-height: 1.8;
    }

    .policy-card{
      max-width: 980px;
      margin: 0 auto;
      background: #fff;
      border-radius: 16px;
      padding: 26px 28px;
      line-height: 1.9;
    }
    .policy-card h2{
      margin: 22px 0 10px;
      font-size: 1.15rem;
    }
    .policy-card p{
      margin: 0 0 14px;
      color:#333;
    }
    .policy-card ul{
      margin: 6px 0 14px 18px;
      padding: 0;
    }
    .policy-card li{
      margin: 6px 0;
    }

    /* 小提示块 */
    .note{
      background: rgba(0,128,96,0.06);
      border: 1px solid rgba(0,128,96,0.14);
      border-radius: 12px;
      padding: 14px 16px;
      margin: 18px 0;
      color:#234;
    }

    /* 让移动菜单按钮不依赖字体图标 */
    .menu-toggle svg{
      display:block;
    }
	
/* ===== Policy Pages (terms / disclaimer / privacy) ===== */
.page-wrap{
  padding-top: 110px;
  padding-bottom: 70px;
}

.policy-header{
  text-align: center;
  margin-bottom: 26px;
}
.policy-header h1{
  margin-bottom: 10px;
}
.policy-header p{
  max-width: 760px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
}

.policy-card{
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 26px 28px;
  line-height: 1.9;
}
.policy-card h2{
  margin: 22px 0 10px;
  font-size: 1.15rem;
}
.policy-card p{
  margin: 0 0 14px;
  color:#333;
}
.policy-card ul{
  margin: 6px 0 14px 18px;
  padding: 0;
}
.policy-card li{
  margin: 6px 0;
}

.note{
  background: rgba(0,128,96,0.06);
  border: 1px solid rgba(0,128,96,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 18px 0;
  color:#234;
}

/* 让移动菜单按钮不依赖字体图标 */
.menu-toggle svg{
  display:block;
}

/* ===== Blog Article Standard ===== */

/* 页面整体间距（沿用 policy 页节奏） */
.page-wrap{
  padding-top: 110px;
  padding-bottom: 70px;
}

/* 标题区：无 hero，只做简洁标题 + 元信息 */
.article-header{
  text-align: center;
  margin-bottom: 18px;
}
.article-header h1{
  margin-bottom: 10px;
}
.article-meta{
  color:#666;
  font-size: 0.95rem;
}

/* 面包屑 */
.breadcrumb{
  max-width: 980px;
  margin: 0 auto 14px;
  color:#666;
  font-size: 0.95rem;
  text-align: center;
}
.breadcrumb a{ color:#008060; }
.breadcrumb span{ color:#777; }

/* 文章卡片容器 */
.article-card{
  max-width: 980px;
  margin: 0 auto;
  background:#fff;
  border-radius: 16px;
  padding: 26px 28px;
  line-height: 1.9;
}

/* 摘要块 */
.article-summary{
  background: rgba(0,128,96,0.06);
  border: 1px solid rgba(0,128,96,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 18px 0;
  color:#234;
}
.article-summary strong{
  color:#0a3;
}

/* 摘要下占位图 */
.article-figure{
  margin: 18px 0 22px;
}
.article-figure .img-placeholder{
  width: 100%;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,128,96,0.10), rgba(0,128,96,0.04));
  border: 1px dashed rgba(0,128,96,0.35);
  height: 280px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2f5;
  color:#2a6;
  font-weight: 600;
}
.article-figure figcaption{
  margin-top: 10px;
  color:#666;
  font-size: 0.92rem;
}

/* TOC（目录） */
.toc{
  margin: 18px 0 24px;
  padding: 16px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #fafafa;
}
.toc-title{
  font-weight: 700;
  margin-bottom: 10px;
}
.toc ol{
  margin: 0 0 0 18px;
  padding: 0;
}
.toc li{ margin: 6px 0; }
.toc a{ color:#008060; }

/* 正文排版 */
.article-card h2{
  margin: 24px 0 10px;
  font-size: 1.58rem;
}
.article-card h3{
  margin: 18px 0 8px;
  font-size: 1.05rem;
  font-weight:bold;
}
.article-card h4{
  margin: 18px 0 8px;
  font-size: 1.05rem;
}
.article-card p{
  margin: 0 0 14px;
  color:#333;
}
.article-card ul, .article-card ol{
  margin: 6px 0 14px 18px;
  padding: 0;
}
.article-card li{ margin: 6px 0; }

/* 信息提示（可复用） */
.note{
  background: rgba(0,128,96,0.06);
  border: 1px solid rgba(0,128,96,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 18px 0;
  color:#234;
}

/* 上一篇/下一篇 */
.article-nav{
  display:flex;
  gap:14px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.article-nav a{
  flex: 1 1 220px;
  display:block;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 12px;
  padding: 12px 14px;
  color:#222;
  text-decoration:none;
  background:#fff;
}
.article-nav a:hover{
  border-color: rgba(0,128,96,0.35);
}
.article-nav .label{
  display:block;
  font-size: 0.9rem;
  color:#666;
  margin-bottom: 4px;
}
.article-nav .title{
  font-weight: 700;
}

/* 相关文章 */
.related{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.related h2{
  margin-top: 0;
}
.related-list{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 12px;
}
.related-item{
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 12px;
  padding: 12px 14px;
  background:#fff;
}
.related-item a{
  color:#008060;
  font-weight: 700;
  text-decoration:none;
}
.related-item p{
  margin: 6px 0 0;
  color:#555;
  font-size: 0.95rem;
}

/* 移动菜单按钮不依赖字体图标 */
.menu-toggle svg{ display:block; }

.article-card img{max-width:100%;border-radius: 20px;}


.footer-cta a {
  text-decoration: none;
  padding: 20px 35px;
  border-radius: 65px;
  font-weight: bold;
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size:18px;
}

.btn-secondary {
  background: #fff;
  color: #008060;
  border: 2px solid #008060;
}

.btn-secondary:hover {
  background: #119e7b;
  color: #fff;
  transform: translateY(-3px);
}