.benefits-section {
  padding: 4rem 2rem;
}

.benefit-cards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
  margin-bottom: 0.6rem;
  color: #0A2540;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #4B5563;
}

#benefit {
    padding-top: 4rem;
    text-align: center;
}

#benefit-para {
    text-align: center;
    padding-bottom: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .benefit-cards {
    grid-template-columns: 1fr;
  }
}