/* 通用容器 */
.grass-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
#grass-header {
  background: #004d40;
  color: #fff;
  padding: 10px 0;
}

.grass-logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.grass-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.grass-nav li {
  margin: 0 10px;
}

.grass-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

/* Footer */
#grass-footer {
  background: #263238;
  color: #ccc;
  padding: 20px 0;
  text-align: center;
}

.grass-footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

/* 响应式布局 */
@media (max-width: 768px) {
  .grass-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .grass-nav li {
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  .grass-logo a {
    font-size: 1.2rem;
  }
  .grass-nav a {
    font-size: 0.9rem;
  }
  .grass-footer-info p {
    font-size: 0.8rem;
  }
}
/*通用结束*/
/* 面包屑导航 */
.grass-breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.grass-breadcrumb li {
  margin-right: 5px;
}

.grass-breadcrumb li::after {
  content: ">";
  margin-left: 5px;
  color: #888;
}

.grass-breadcrumb li:last-child::after {
  content: "";
}

.grass-breadcrumb a {
  text-decoration: none;
  color: #004d40;
}

/* Section 通用样式 */
.grass-section-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.grass-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.grass-card {
  background: #f5f5f5;
  padding: 20px;
  flex: 1 1 300px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.grass-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #004d40;
}

.grass-card p {
  font-size: 0.95rem;
  color: #555;
}

/* 响应式布局 */
@media (max-width: 768px) {
  .grass-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .grass-section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .grass-card {
    padding: 15px;
  }
  .grass-card h3 {
    font-size: 1rem;
  }
  .grass-card p {
    font-size: 0.9rem;
  }
}
/* 客户评论模块 */
#grass-reviews .grass-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

#grass-reviews .grass-card {
  background: #f9f9f9;
  padding: 20px;
  flex: 1 1 300px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#grass-reviews .grass-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #004d40;
}

#grass-reviews .grass-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* 响应式 */
@media (max-width: 768px) {
  #grass-reviews .grass-grid {
    flex-direction: column;
    align-items: stretch;
  }
}
/* CTA 模块 */
#grass-cta {
  background: #004d40;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  margin-top: 40px;
}

.grass-cta-text {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.grass-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.grass-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff9800;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.grass-btn:hover {
  background: #e68900;
}

.grass-btn-secondary {
  background: #009688;
}

.grass-btn-secondary:hover {
  background: #00796b;
}

/* 响应式 */
@media (max-width: 768px) {
  #grass-cta {
    padding: 40px 15px;
  }
  .grass-cta-text {
    font-size: 0.95rem;
  }
}
