/* Reset and basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #f0f2f1;
  color: #2e2e2e;
  line-height: 1.6;
  padding: 20px;
}

h1, h2 {
  font-family: 'Montserrat', sans-serif;
  color: #1f3d24;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #3e4c38;
  font-weight: 500;
}

.section {
  margin: 40px 0;
}

.hero {
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: #dbe9d8;
  text-align: center;
  padding: 90px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background-color: rgba(31, 61, 36, 0.65);
  border-radius: 12px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.tagline {
  font-size: 1.8rem;
  margin: 20px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-primary {
  background-color: #1f3d24;
  color: #dbe9d8;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: background-color 0.3s ease;
  box-shadow: 0 5px 10px rgba(31, 61, 36, 0.6);
}

.btn-primary:hover {
  background-color: #3e663f;
  box-shadow: 0 7px 15px rgba(62, 102, 63, 0.8);
}

.cta {
  text-align: center;
  margin-top: 60px;
}

blockquote {
  font-style: italic;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 6px solid #1f3d24;
  color: #3e4c38;
  font-weight: 500;
}

footer {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  color: #5b6a54;
}

/* Responsive */
@media (max-width: 600px) {
  .hero {
    padding: 70px 15px;
  }

  .tagline {
    font-size: 1.4rem;
  }

  .btn-primary {
    padding: 12px 28px;
  }
}
