.info-section {
  background-color: #fff;
  padding: 80px 20px;
  color: #111;
}

.info-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.info-section h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: #222;
}

.info-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.info-section .info-container > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

.info-section .info-container > *.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-image-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.info-section .info-image {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
