.info-bar {
  width: 100%;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0 24px 0;
}
.info-bar-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.info-box {
  background: #97d53a;
  color: #222;
  border-radius: 4px;
  padding: 24px 36px 20px 24px;
  min-width: 320px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: 2px dashed #fff;
  margin: 8px 0;
}
.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-right: 18px;
  color: #222;
}
.info-box strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
  margin-top: 2px;
}
.info-box span {
  display: block;
  font-size: 1.05rem;
  color: #222;
}
@media (max-width: 900px) {
  .info-bar-inner {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .info-box {
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
  }
}
