#workshop-page {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

#workshop-content-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin: 40px 0;
  align-items: flex-start;
}

#workshop-text-container {
  width: 50%;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
}

#workshop-title-container h1 {
  margin-bottom: 30px;
  font-size: 2.5em;
  color: #333;
  font-weight: bold;
  text-align: center;
}

#workshop-description {
  padding: 0;
}

#workshop-description p {
  font-size: 1.3em;
  line-height: 1.6;
  color: #4f4f4f;
  margin: 0 0 15px 0;
  text-align: justify;
}

#workshop-description p:last-child {
  margin-bottom: 0;
}

#workshop-img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
}

#workshop-page-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

@media only screen and (max-width: 1200px) {
  #workshop-content-container {
    flex-direction: column;
    gap: 30px;
  }

  #workshop-text-container,
  #workshop-img-container {
    width: 100%;
  }

  #workshop-text-container {
    padding: 30px;
  }

  #workshop-title-container h1 {
    font-size: 2em;
  }

  #workshop-description p {
    font-size: 1.2em;
    text-align: center;
  }
}
