.info {
  text-align: center;
  color: var(--primary-main);
  margin-top: auto;
}

.info__content {
  padding: 16px;
}

.info__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info__title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 125%;
}

.info__text {
  line-height: 125%;
  font-weight: 400;
  font-size: 14px;
  color: var(--primary-main);
}

.info__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}

.info__icon {
  width: 24px;
  height: 24px;
}

.info__footer {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--blue-600);
}

@media (max-width: 768px) {
  .info__icons {
    display: grid;
    justify-items: center;
  }
}
