.benefit-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.benefit-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefit-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #1f2937;
  font-size: 2.5em;
}

.benefit-grid {
  display: grid;
  gap: 30px;
  grid-auto-rows: 1fr;
}

.benefit-grid a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
  height: 100%;
}

.benefit-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.benefit-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
  font-size: 40px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.benefit-card h3 {
  margin: 0 0 15px;
  color: #1f2937;
  font-size: 1.5em;
  font-weight: 600;
}

.benefit-card p {
  margin: 0;
  color: #6b7280;
  font-size: 1em;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefit-grid {
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .benefit-grid[data-mobile-columns="1"] {
    grid-template-columns: 1fr !important;
    max-width: 550px;
    margin: 0 auto;
  }

  .benefit-grid[data-mobile-columns="1"] .benefit-card {
    padding: 40px 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
  }

  .benefit-grid[data-mobile-columns="1"] .benefit-card i {
    font-size: 48px;
    margin-bottom: 25px;
  }

  .benefit-grid[data-mobile-columns="1"] .benefit-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .benefit-grid[data-mobile-columns="1"] .benefit-card p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .benefit-grid[data-mobile-columns="2"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .benefit-grid[data-mobile-columns="2"] .benefit-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .benefit-card {
    padding: 20px 15px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .benefit-card i {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .benefit-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .benefit-card p {
    font-size: 0.9em;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .benefit-grid {
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .benefit-grid[data-mobile-columns="1"] .benefit-card {
    padding: 30px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .benefit-grid[data-mobile-columns="1"] .benefit-card i {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .benefit-grid[data-mobile-columns="1"] .benefit-card h3 {
    font-size: 1.6em;
    margin-bottom: 12px;
  }

  .benefit-grid[data-mobile-columns="1"] .benefit-card p {
    font-size: 1.1em;
    line-height: 1.5;
  }

  .benefit-grid[data-mobile-columns="2"] .benefit-card {
    padding: 15px 10px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .benefit-grid[data-mobile-columns="2"] .benefit-card i {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .benefit-grid[data-mobile-columns="2"] .benefit-card h3 {
    font-size: 1em;
    margin-bottom: 8px;
  }

  .benefit-grid[data-mobile-columns="2"] .benefit-card p {
    font-size: 0.8em;
    line-height: 1.3;
  }
}
[class*="oea-benefit-load-anim-"]:not(.oea-benefit-load-anim-none)
  .benefit-card {
  animation-iteration-count: 1;
  animation-fill-mode: backwards;
}

.oea-animate-on-scroll[class*="oea-benefit-load-anim-"]:not(
    .oea-benefit-load-anim-none
  )
  .benefit-card {
  visibility: hidden;
  animation-play-state: paused;
}

.oea-benefit-load-anim-fadeIn .benefit-card {
  animation-name: fadeIn;
}

.oea-benefit-load-anim-fadeInUp .benefit-card {
  animation-name: fadeInUp;
}

.oea-benefit-load-anim-fadeInDown .benefit-card {
  animation-name: oeaFadeInDown;
}

.oea-benefit-load-anim-fadeInLeft .benefit-card {
  animation-name: oeaFadeInLeft;
}

.oea-benefit-load-anim-fadeInRight .benefit-card {
  animation-name: oeaFadeInRight;
}

.oea-benefit-load-anim-scaleIn .benefit-card {
  animation-name: oea-scaleIn;
}

.oea-benefit-load-anim-flipIn .benefit-card {
  animation-name: oeaFlipIn;
  transform-style: preserve-3d;
}

.oea-benefit-load-anim-swingIn .benefit-card {
  animation-name: oea-swingIn;
}

.oea-benefit-load-anim-bounceIn .benefit-card {
  animation-name: bounceIn;
}

.oea-benefit-load-anim-rotateIn .benefit-card {
  animation-name: oea-rotateIn;
}

.oea-benefit-load-anim-zoomInBlur .benefit-card {
  animation-name: oea-zoomInBlur;
}

.oea-benefit-load-anim-glideIn .benefit-card {
  animation-name: oea-glideIn;
}

.benefit-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.oea-benefit-hover-none .benefit-card:hover {
  transform: none;
}

.oea-benefit-hover-scale_1_05 .benefit-card:hover {
  transform: scale(1.05);
}

.oea-benefit-hover-scale_1_1 .benefit-card:hover {
  transform: scale(1.1);
}

.oea-benefit-hover-scale_1_15 .benefit-card:hover {
  transform: scale(1.15);
}

.oea-benefit-hover-translateY_neg_5 .benefit-card:hover {
  transform: translateY(-5px);
}

.oea-benefit-hover-translateY_neg_10 .benefit-card:hover {
  transform: translateY(-10px);
}

.oea-benefit-hover-translateY_neg_15 .benefit-card:hover {
  transform: translateY(-15px);
}

.oea-benefit-hover-translateX_5 .benefit-card:hover {
  transform: translateX(5px);
}

.oea-benefit-hover-translateX_neg_5 .benefit-card:hover {
  transform: translateX(-5px);
}

.oea-benefit-hover-rotate_5 .benefit-card:hover {
  transform: rotate(5deg);
}

@media (max-width: 768px) {
  .oea-disable-animation-mobile .benefit-card {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .oea-disable-animation-mobile .benefit-card:hover {
    animation: none !important;
    transform: none !important;
    transition-property: color, background-color, border-color, border-radius,
      border-width, box-shadow, opacity !important;
  }
}
