.benefits {
  background: var(--bg-dark);
  padding: clamp(40px, 8vw, 80px) 0;
}

.benefits h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 3em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card:last-child {
  grid-column: 1 / -1;
  max-width: 480px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--bg-medium);
  padding: 2em;
  border-radius: 15px;
  border-left: 6px solid var(--primary-yellow) !important;
}

.benefit-card h3 {
  font-weight: 600;
  color: #ffffff;
}

.benefit-card p {
  color: #cccccc;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
}

/* MOBILE - Extra Small (up to 480px) */
@media (max-width: 480px) {
  .benefits-grid{
      grid-template-columns: 1fr;
      gap: 1.5em;
  }

  .benefit-card:last-child {
      grid-column: 1;
      max-width: none;
      margin: 0;
  }
}

/* TABLET - Small to Medium (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card:last-child {
      grid-column: 1 / -1;
      max-width: 400px;
      margin: 0 auto;
  }
}

/* TABLET to DESKTOP - Medium (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card:last-child {
      grid-column: 1 / -1;
      max-width: 450px;
      margin: 0 auto;
  }
}
