:root {
  --color-text-dark: #1a1a1a;
  --color-text-muted: #7c7c7c;
  --color-bg-light: #f8f9fa;
}

.benefits {
  background-color: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.benefits__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

.benefits-card {
  gap: 24px;
  height: 100%;
  transition: transform 0.3s ease;
}

.benefits-card__icon-wrapper img {
  margin: auto;
}
.benefits-card__icon-wrapper {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background-color: transparent;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefits-card__icon {
    margin-bottom: 0;
}

.benefits-card:hover .benefits-card__icon-wrapper {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.benefits-card__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.benefits-card__content {
  flex: 1;
}

.benefits-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.benefits-card__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .benefits__title {
    font-size: 2.5rem;
    margin-bottom: 60px;
  }
  
  .benefits {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 575.98px) {
  .benefits__title {
    font-size: 2rem;
  }
  
  .benefits-card {
    flex-direction: column;
    gap: 16px;
  }

  .benefits-card__icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .benefits-card__icon {
    width: 32px;
    height: 32px;
  }
}