.hero-section {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--dark-gray),
    var(--medium-gray)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.features-section {
  padding: 4rem 0;
  background: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-icon {
  margin-bottom: 1rem;
  display: inline-block;
  width: 48px;
  height: 48px;
  color: var(--medium-gray);
  transition: all 0.3s ease;
}

.feature-svg {
  width: 100%;
  height: 100%;
}

.feature-card:hover .feature-icon {
  color: var(--dark-gray);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.recent-posts {
  padding: 4rem 0;
}

.recent-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
}

.posts-preview {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.posts-preview p {
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.view-all-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  color: white;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.view-all-link:hover {
  background: linear-gradient(135deg, var(--forest-green-light), var(--forest-green));
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}