.benefits {
  padding: 80px 0;
  background-color: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.benefit-card {
  position: relative;
  width: 241px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #D0F8E1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.benefit-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.benefit-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 179, 48, 1) 100%);
}

.benefit-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
}

.benefit-title {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 8px;
}

.benefit-description {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14.4px;
  color: #ffffff;
}

.benefits-cta {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .benefit-card {
    width: 100%;
    max-width: 241px;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    width: 100%;
    height: 100px;
  }

  .benefit-content {
    padding: 16px;
  }

  .benefit-title {
    font-size: 14px;
    line-height: 16px;
  }

  .benefit-description {
    font-size: 11px;
    line-height: 13px;
  }
}