.blog-highlight {
  background: linear-gradient(135deg, #f7f2ff 0%, #ffffff 100%);
  border-left: 5px solid #5b1bb2;
  border-radius: 14px;
  padding: 28px;
  margin: 32px 0;
  box-shadow: 0 8px 24px rgba(91, 27, 178, 0.08);
}

.blog-highlight p {
  margin: 0;
  color: #333;
  font-size: 1.12rem;
  line-height: 1.75;
  font-weight: 600;
}

.blog-section-title {
  color: #5b1bb2;
  font-weight: 800;
  margin-bottom: 18px;
}

.blog-text {
  color: #555;
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin: 30px 0 45px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f2e8ff;
  color: #5b1bb2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.service-card h4 {
  font-size: 1.02rem;
  font-weight: 800;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.number-block {
  display: flex;
  gap: 20px;
  background: #fafafa;
  border-radius: 18px;
  padding: 26px;
  margin: 26px 0 36px;
  border: 1px solid #eee;
}

.number-block .number {
  min-width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #5b1bb2;
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-block h3 {
  color: #2b2b2b;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.number-block p {
  color: #555;
  line-height: 1.75;
  margin: 0;
  font-size: 1.02rem;
}

.blog-list-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  margin: 26px 0 42px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #ff6b2c;
}

.blog-list-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-list-box li {
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 14px;
  padding-left: 32px;
  position: relative;
}

.blog-list-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6b2c;
  font-weight: 800;
}

.cta-blog {
  background: linear-gradient(135deg, #5b1bb2 0%, #2b0b5f 100%);
  border-radius: 22px;
  padding: 34px;
  margin-top: 50px;
  box-shadow: 0 14px 30px rgba(91, 27, 178, 0.22);
}

.cta-blog h3 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-blog p {
  color: #f0e9ff;
  line-height: 1.7;
  margin-bottom: 22px;
}

.cta-blog .cta-button {
  display: inline-block;
  background: #c63645;
  color: #ffffff;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.cta-blog .cta-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
}

@media (max-width: 575px) {
  .number-block {
    flex-direction: column;
  }
}
