.bento-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 800px;
    margin: 25px 0;
    font-family: -apple-system, system-ui, sans-serif;
}

@media (min-width: 600px) {
    .bento-list {
        grid-template-columns: 1fr 1fr;
    }
}

.bento-list li {
    background: #f8f9fa; 
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.bento-list li:hover {
    background: #ffffff;
    border-color: #1DB954; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.bento-list strong {
    display: block;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 8px;
    border-left: 3px solid #1DB954;
    padding-left: 10px;
}

.bento-list p {
    margin: 10px 0 0 0;
    font-size: 1.45rem;
    color: #555;
    line-height: 1.5;
}
/*第二种样式*/
/* 1. 样式隔离与盒模型重置 */
  .step-list, 
  .step-list * {
    box-sizing: border-box;
  }

  .step-list {
    counter-reset: step-counter;
    list-style: none !important; /* 强制消除主题默认圆点 */
    padding: 0 !important;
    margin: 0 0 20px 0;
    max-width: 800px;
    width: 100%;
  }

  .step-list li {
    counter-increment: step-counter;
    position: relative;
    padding: 16px 0 16px 50px !important; /* 增加左边距，确保放大时不重叠 */
    margin: 0 !important;
    border-bottom: 1px solid #ebebeb;
    list-style: none !important;
    background: transparent;
  }

  .step-list li:last-child {
    border-bottom: none;
  }

  /* 2. 序号位置与字体优化 */
  .step-list li::before {
    content: counter(step-counter, decimal-leading-zero); 
    position: absolute;
    left: 0;
    top: 14px; /* 改为与首行文字平齐，适合多行文本 */
    font-size: 28px; /* 固定 px，防止不同网站 rem 基准不同导致巨大字体 */
    font-weight: 900;
    line-height: 1;
    color: rgba(42, 158, 236, 0.73); 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    z-index: 1;
    transition: transform 0.2s ease, color 0.2s ease;
    transform-origin: left center;
  }

  /* 3. 平滑悬停效果（用 scale 替代 font-size，避免排版抖动） */
  .step-list li:hover::before {
    color: #2a9eec;
    transform: scale(1.15);
  }

  .step-list .content-wrap {
    position: relative;
    z-index: 2; 
  }

  /* 4. 文本样式重置 */
  .step-list p {
    margin: 0 !important;
    padding: 0 !important;
    color: #333333;
    line-height: 1.6;
    font-size: 16px; /* 改为标准的 16px 读写字号 */
  }

  .step-list strong {
    color: #1a1a1a;
    letter-spacing: -0.02em;
  }

/*pro and tips card*/
.platform-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.platform-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  border-left: 8px solid #ffcc00; /* Akzentfarbe (z.B. Gelb für Kinder) */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.platform-card:hover {
  transform: translateY(-3px);
}

.platform-card h3 {
  margin-top: 0;
  color: #2c3e50;
  font-size: 18px;
}

.benefit-tag {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  /*margin-top: 10px;*/
}

.pro-tip {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed #ddd;
  font-size: 15px;
  color: #666;
}
.quick-facts-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    background-color: #f7f9f8;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 20px 0;
    font-size: 14px;
    color: #2d3748;
  }
  .fact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 220px;
  }
  .fact-item i {
    color: #2e8b57;
    font-size: 15px;
  }

  /* Stepped Timeline */
  .step-container {
    margin: 15px 0 20px 0;
  }
  .step-item {
    display: flex;
    align-items: center;
    background-color: #fafbfc;
    border: 1px solid #fafafa;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 8px;
  }
  .step-number {
    background-color: #0bae5f;
    color: white;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 12px;
    flex-shrink: 0;
  }
  .step-number-red {
    background-color: #dc3545;
    color: white;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 12px;
    flex-shrink: 0;
  }
  .step-content {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.4;
  }

  /* Professionelle Callout-Box */
  .professional-callout {
    background-color: #fffaf0; /* Sehr zarter Ocker-/Warmton */
    border: 1px solid #feebc8;
    border-left: 4px solid #dd6b20;
    border-radius: 6px;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 14.5px;
    color: #2d3748;
    line-height: 1.6;
  }
  .callout-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9c4221;
    margin-bottom: 10px;
    font-size: 15px;
  }
  .callout-title i {
    color: #dd6b20;
  }
  .callout-list {
    margin: 0;
    padding-left: 18px;
  }
  .callout-list li {
    margin-bottom: 8px;
  }
  .callout-list li:last-child {
    margin-bottom: 0;
  }
.professional-callout-green {
    background-color: #fffaf0; /* Sehr zarter Ocker-/Warmton */
    border: 1px solid #feebc8;
    border-left: 4px solid #639c1f;
    border-radius: 6px;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 14.5px;
    color: #2d3748;
    line-height: 1.6;
  }
  .callout-title-green {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #639c1f;
    margin-bottom: 10px;
    font-size: 15px;
  }
  .callout-title-green i {
    color: #639c1f;
  }
.professional-callout-red {
    background-color: #fffaf0; /* Sehr zarter Ocker-/Warmton */
    border: 1px solid #feebc8;
    border-left: 4px solid #dc3545;
    border-radius: 6px;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 14.5px;
    color: #2d3748;
    line-height: 1.6;
  }
  .callout-title-red {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c92a2a;
    margin-bottom: 10px;
    font-size: 15px;
  }
  .callout-title-red i {
    color: #dd6b20;
  }
.solution-card {
  background: #ffffff;
  /*border-left: 4px solid #ff9800;*/
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 4px 8px 8px 4px;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.solution-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.solution-steps {
  background: #fff8e1;
  padding: 15px;
  border-radius: 6px;
  margin-top: 12px;
  font-size: 16px;
}
.solution-steps p{
  margin-top: 0 !important;
}
.solution-ol {
  margin: 8px 0 0 20px;
  padding: 0;
}
.solution-ol li {
  margin-bottom: 6px;
}
.custom-bullets {
  list-style-type: disc !important;
  margin-left: 30px !important;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 !important;
}
.custom-bullets li {
  list-style-type: disc !important;
  margin-bottom: 6px;
}
.quick-decision-wrapper {
    margin: 1.5rem 0;
  }
  .quick-decision-header {
    background-color: #e8f5e9;
    /*border-left: 5px solid #2e7d32;*/
    padding: 12px 16px;
    margin-bottom: 15px;
  }
  .quick-decision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .quick-decision-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 14px;
    border-radius: 4px;
  }
  .card-category {
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 6px;
  }
  .card-tool {
    font-weight: bold;
    margin-bottom: 4px;
  }
  .card-desc {
    font-size: 16px;
    color: #555;
  }

  @media (max-width: 768px) {
    .quick-decision-grid {
      grid-template-columns: 1fr;
    }
  }