.footer-sales-points {
  background-color: #ffffff;
  padding: 30px 0;
  margin-bottom: 0;
  color: #505050;
}

.footer-sales-points__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  align-items: stretch;
  padding: 0 30px;
  max-width: 1600px;
  margin: 0 auto;
}

.color-scheme-2 .footer-sales-points__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  align-items: center;
  border-radius: 8px;
  background-color: #f8f8f8f8;
  height: 12rem;
}

.footer-sales-points__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.footer-sales-points__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-sales-points__content {
  flex: 1;
}

.footer-sales-points__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #138808;
  line-height: 1.2;
}

.footer-sales-points__description {
  font-size: 1rem;
  margin: 0;
  line-height: 1.4;
}

/* Mobile responsiveness */
@media screen and (max-width: 749px) {
  .footer-sales-points__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 15px;
  }

  .footer-sales-points {
    padding: 2rem 0;
  }

  .color-scheme-2 .footer-sales-points__item {
    gap: 15px;
  }
  .footer-sales-points__description {
    font-size: 1.2rem;
  }

  .footer-sales-points__icon {
    width: 55px;
    height: 55px;
  }
}

/* Tablet and up */
@media screen and (min-width: 750px) and (max-width: 1199px) {
  .footer-sales-points__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media screen and (min-width: 1200px) {
  .footer-sales-points__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
