.benefits {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.benefits__title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #8B1538;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.benefits__description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefits__item {
  background-color: white;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.benefits__icon {
  width: 60px;
  height: 60px;
  background-color: #FCE7F3;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.benefits__item-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefits__text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefits__icon--img{
  filter:
    brightness(0) saturate(100%)
    invert(19%)
    sepia(44%)
    saturate(6500%)
    hue-rotate(332deg)
    brightness(98%)
    contrast(105%);
}

@media (max-width: 768px) {
  .benefits {
    padding: 3rem 1rem;
  }

  .benefits__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .benefits__description {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefits__item {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .benefits {
    padding: 2rem 0.75rem;
  }

  .benefits__title {
    font-size: 1.5rem;
  }

  .benefits__description {
    font-size: 0.9rem;
  }

  .benefits__item {
    padding: 1.5rem 1rem;
  }


  .benefits__item-title {
    font-size: 1.1rem;
  }

  .benefits__text {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefits__item {
    transition: none;
  }