.benefits-section {
  padding: 80px 20px;
  background-color: #f5f7fa;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.benefits-section h2 {
  font-size: 32px;
  color: #006d23;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

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

.benefit-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #00a86b;
}

.benefit-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
@media screen and (max-width: 1152px) {
  .container > h2{
    font-size: 25px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .benefit-card > h3{
    font-size: 18px;
  }
  .benefit-card > p{
    font-size: 13px;
  }
  .container > h2{
    font-size: 20px;
  }
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
/* .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
} */