body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #f8f8f5;
}

/* HERO */
.hero {
  background: url('../assets/hero.jpg') center/cover no-repeat;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.overlay {
  background: rgba(0, 0, 0, 0.45);
  color: white;
  text-align: center;
  padding: 40px;
  border-radius: 14px;
  max-width: 800px;
}

.overlay h1 {
  font-size: 48px;
  margin: 0 0 16px;
}

.overlay p {
  font-size: 20px;
  margin: 0 0 20px;
}

.btn {
  background: #2e7d32;
  color: white;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn:hover {
  background: #256428;
}

/* TRUST */
.trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 22px 20px;
  background: white;
  flex-wrap: wrap;
  font-weight: 600;
}

/* SERVICES */
.services {
  text-align: center;
  padding: 70px 20px;
}

.services h2,
.gallery h2,
.cta h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 28px;
  width: 280px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
}

.card p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* GALLERY */
.gallery {
  text-align: center;
  padding: 70px 20px;
  background: #eef4ec;
}

.gallery .grid img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: #2e7d32;
  color: white;
}

.cta .btn {
  background: white;
  color: #2e7d32;
}

.cta .btn:hover {
  background: #f1f1f1;
}

/* Mobile */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 34px;
  }

  .overlay p {
    font-size: 17px;
  }

  .gallery .grid img,
  .card {
    width: 100%;
    max-width: 340px;
  }
}
.quote-hero {
  background: url('../assets/hero.jpg') center/cover no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.quote-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  padding: 36px;
  border-radius: 14px;
  max-width: 700px;
}

.quote-overlay h1 {
  font-size: 42px;
  margin: 0 0 14px;
}

.quote-overlay p {
  font-size: 18px;
  margin: 0;
}

.quote-section {
  padding: 70px 20px;
  background: #f8f8f5;
}

.quote-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.quote-card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 30px;
  width: 420px;
}

.quote-card h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 28px;
}

.quote-card p,
.quote-card li {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.quote-card ul {
  padding-left: 22px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .quote-card {
    width: 100%;
    max-width: 360px;
  }

  .quote-overlay h1 {
    font-size: 32px;
  }
}