.benefits-wrapper1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
   padding-block: 1rem;
}

.benefits-item {
  text-align: center;
  margin-bottom: 1rem;
}

.benefits-icon {
  width: 80px; /* Fixed width for the icon */
  height: 80px; /* Fixed height for the icon */
  margin: auto; /* Center the icon horizontally */
  margin-bottom: 1rem;
}

.benefits-desc {
  width:100%;
   color: #7f4fd3;
  line-height: 1.5; /* Set line height for better readability */
  align-self: center; 
}

@media (max-width: 992px) {
  .benefits-wrapper1 {
    grid-template-columns: repeat(2, 1fr); /* Adjust columns for medium screens 
  }
}

@media (max-width: 576px) {
  .benefits-wrapper1 {
    grid-template-columns: repeat(2, 1fr); /* Adjust columns for small screens 
  }
}
