* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.hero {
  background: linear-gradient(135deg, #064e3b, #22c55e);
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 50px;
  align-items: center;
}

.tag {
  background: white;
  color: #166534;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
}

h1 {
  font-size: 55px;
  line-height: 1.1;
}

.hero h2 {
  font-weight: 400;
}

.btn {
  display: inline-block;

  background: #255805;

  color: white;

  padding: 18px 35px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: bold;

  margin-top: 20px;
}

.card {
  background: white;

  padding: 30px;

  border-radius: 20px;

  box-shadow: 0 15px 40px #0002;
}

.cards {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.trust {
  background: #f0fdf4;
}

.title {
  text-align: center;

  font-size: 40px;
}

.dark {
  background: #111827;

  color: white;

  text-align: center;
}
.hero-card {
  width: 100%;
  background: white;
  padding: 25px;
  border-radius: 20px;
  align-items: center;
  box-shadow: 0 15px 40px #0003;

  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: 15px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.stats {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.stats div {
  background: #1f2937;

  padding: 20px;

  border-radius: 15px;
}

.cta {
  background: #22c55e;

  color: white;

  text-align: center;
}

footer {
  background: #111;

  color: white;

  text-align: center;

  padding: 20px;
}

@media (max-width: 800px) {
  .hero-grid,
  .cards,
  .stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  h1 {
    font-size: 36px;
  }
  .hero-card {
    width: 100%;
  }

  .hero-image {
    height: 350px;
  }
}
