.hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(39, 104, 74, 0.9),
    rgba(39, 104, 74, 0.7)
  );
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.hero-text {
  color: white;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 0rem;
  margin-bottom: 1rem;
  color: white;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 4rem;
  }
  
  .hero-content {
    padding: 0 30px;
  }
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .hero-text p {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: white;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: white;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center
  margin-right: 8px;
}

.icon > svg {
    width: 20px;
    height: 20px;
}

