.info-fields {
    height: 100vh;
    /*display: flex;*/
    flex-direction: column;
    justify-content: space-around;
    padding: 60px 20px;
    display: none;
}

.info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
  margin: auto;
}

.info-section.active {
  opacity: 1;
  transform: translateY(0);
}

.info-section .content {
  flex: 1;
  padding: 20px;
  /*max-width: 50%;*/
}

.info-section .content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.info-section .content p {
  font-size: 1rem;
  color: #555;
}

.info-section .image {
  flex: 1;
  text-align: center;
  /*max-width: 50%;*/
}

.info-section .image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Ters Düzen */
.reverse {
  flex-direction: row-reverse;
}

/* Scroll için Efekt */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    text-align: center;
  }

  .info-section .content,
  .info-section .image {
    max-width: 100%;
  }
}
