.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 50px;
  /* max-width: 1200px; */
  background-color: #f7fafc;
  margin: auto;
}
.image-section {
  flex: 1;
  padding-right: 30px;
}
.image-section img {
  width: 100%;
  border-radius: 10px;
}
.text-section {
  flex: 1;
}
.text-section h1 {
  text-align: center;
  font-size: 2.5em;
  color: #1a202c;
  margin-bottom: 20px;
}
.text-section p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #4a5568;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 20px;
  }
  .image-section,
  .text-section {
    padding: 0;
    margin-bottom: 30px;
  }
}
