.services-section {
  padding: 80px 5vw;
  background: #f9f9fb;
  text-align: center;
}

/* 头部文字块整体 */
.services-header {
  font-family: 'Georgia', serif;
  text-align: center;
  padding: 0 24px;
  margin-bottom: 64px;
  color: #1a1a1a;
}

/* 标题样式 */
.services-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #031633;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

/* 高亮词汇效果：添加渐变支持、增强视觉焦点 */
.services-header .highlight {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 700;
}

/* 正文段落样式优化 */
.services-header p {
  max-width: 720px;
  margin: 16px auto;
  color: #4b4b4b;
  font-size: 1.06rem;
  line-height: 1.85;
  letter-spacing: 0.2px;
  text-align: left;
}

.services-intro-header {
  font-family: 'Georgia', serif;
  text-align: center;
  padding: 0 24px;
  margin: 64px auto;
  color: #1a1a1a;
  max-width: 860px;
}

.services-intro-subtitle {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.services-intro-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #031633;
  line-height: 1.4;
}

.services-intro-desc {
  font-size: 1.1rem;
  line-height: 1.95;
  color: #444;
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: 0.3px;
}

.services-intro-subtitle .highlight {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}




.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 每行 3 列 */
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  max-width: 1260px;     /* 限制最大宽度 */
  margin: 0 auto;       /* 居中 */
  padding: 0 16px;      /* 给左右一点内边距 */
}


@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


.service-card {
  max-width: 380px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-card-content {
  padding: 24px;
  text-align: left;
  font-family: 'Georgia', serif;
  background-color: #fffdfa;
  transition: box-shadow 0.3s ease;
}

.service-card-content:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.service-card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #031633;
}

.service-card-content p {
  font-size: 1rem;
  color: #4b4b4b;
  line-height: 1.6;
  margin-bottom: 16px;
}


.learn-more {
  font-weight: 600;
  color: #ec4899;
  text-decoration: none;
  font-size: 0.95rem;
}

.learn-more:hover {
  text-decoration: underline;
}

.card-footer-deco {
  height: 8px; /* 可根据视觉调整高度 */
  width: 100%;
  background-color: #facc15; /* 明亮黄 (#facc15 = tailwind yellow-400) */
  border-radius: 0 0 12px 12px; /* 左右底部圆角 */
}


.included-section {
  padding: 80px 5vw;
  background-color: #fff;
}

.included-container {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.included-content {
  flex: 1 1 420px;
}

.included-content h5 {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.included-content h2 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}

.included-content .highlight {
  color: #ec4899;
}

.included-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

.btn-gradient {
  display: inline-block;
  background: linear-gradient(to right, #ec4899, #6366f1);
  color: white;
  padding: 14px 32px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.9;
}

.included-accordion {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
}

.accordion-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.accordion-title .plus {
  font-size: 1.5rem;
  color: #6366f1;
  font-weight: bold;
  margin-left: 12px;
}

/* 服务介绍标题区 */
.services-intro-block {
  margin-bottom: 40px;
  text-align: center;
}

.services-intro-title {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: 'Georgia', serif;
  color: #031633;
  margin-bottom: 16px;
}

.services-intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b4b4b;
  max-width: 760px;
  margin: 0 auto 20px;
}

/* 提示语风格强化 */
.services-reminder {
  font-size: 0.95rem;
  color: #b91c1c;
  background-color: #fef2f2;
  border-left: 4px solid #ef4444;
  padding: 12px 18px;
  border-radius: 8px;
  max-width: 700px;
  margin: 24px auto;
  font-family: 'Georgia', serif;
  text-align: left;
}


