/* style.css */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f5f0;
}

h1, h2, h3 {
  font-family: 'Merriweather', serif;
}

.hero-overlay {
  background-color: rgba(0,0,0,0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.section-bg {
  background-color: #f1f1f1;
  padding: 2rem;
  border-radius: 1rem;
}
