.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.hero .hero-background {
  position: absolute;
  inset: 0;
}

.hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 48, 9, 0.85), rgba(45, 80, 22, 0.75));
}

.hero .hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 80px var(--container-padding);
  width: 100%;
}

.hero .hero-content {
  max-width: 760px;
}

.hero .hero-title {
  margin: 0 0 18px 0;
  color: #fff;
}

.hero .hero-subtitle {
  margin: 0 0 28px 0;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.95);
}

.hero .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 640px) {
  .hero .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

