.benefits-section {
  text-align: center;
  padding: 80px 20px !important;
}

/* Themes */
.benefits-section.light {
/*   background: #f4f4f4; */
  color: #1a2a44;
}

.benefits-section.dark {
  background: linear-gradient(90deg,#0f1f3d,#071226);
  color: #fff;
}

/* Header */
.section-header {
  max-width: 700px;
  margin: 0 auto 50px;
}

.benefits-section h2 {
  font-size: 46px;
  font-family: Roboto Slab, serif;
  margin-bottom: 15px;
  color: inherit;
}

.section-header .desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  color: inherit;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Cards */
.benefit-card {
  padding: 22px;
  text-align: left;
  transition: all 0.3s ease;
}

/* Light version cards */
.benefits-section.light .benefit-card {
  background: #5f6f82;
  color: #fff;
}

/* Dark version cards */
.benefits-section.dark .benefit-card {
   background: #EDF1F4;
   color: #132543;
}

/* Typography */
.benefit-card h3 {
  font-size: 24px;
  font-weight: bold;
  font-family: Roboto Slab, serif;
  margin-bottom: 8px;
  color: inherit;
}

.benefit-card p {
  font-size: 18px;
  line-height: 1.5;
}

/* Hover */
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap:10px;
  }
  
  .benefit-card{
    padding:12px;
  }
  
  .benefit-card p{
    font-size: 12px;
    margin-bottom: 0px;
}
  }
  
  .benefit-card h3{
    font-size:16px;
  }

  .section-header h2 {
    font-size: 30px;
  }
}