.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-secondary);
  border-top: 0.5px solid var(--color-border-tertiary);
  border-bottom: 0.5px solid var(--color-border-tertiary);
  padding: 0.75rem 0;
  margin-bottom: 2rem;
}

.hero-banner {
  background: #1a2e1e;
  border-radius: var(--border-radius-lg);
  padding: 2rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-banner-text {
  font-size: 16px;
  color: #c8dfc9;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.hero-banner-text strong {
  color: #e8f3e8;
  font-weight: 500;
  font-style: normal;
}

.service-card-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--color-text-primary);
}

.highlight-box {
  border-left: 3px solid #3B6D11;
  background: #EAF3DE;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin: 0;
  font-size: 15px;
  color: #27500A;
  line-height: 1.6;
  font-weight: 400;
}

.check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #639922;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.cta-block {
  background: #1a2e1e;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 2.5rem;
}

.cta-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #e8f3e8;
  margin: 0 0 0.5rem;
}

.cta-block p {
  font-size: 15px;
  color: #c8dfc9;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #639922;
  color: #EAF3DE;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 28px;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.cta-btn:hover {
  background: #3B6D11;
}

