@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  /* max-width: 800px; */
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header {
  text-align: center;
  margin: auto;
  margin-bottom: 40px;
  padding: 40px 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
}

.header h1 {
  font-size: 2.5em;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.2em;
  color: #7f8c8d;
  font-weight: 400;
}

.main-content,
.chat-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.main-content {
  flex-grow: 0.3;
  min-width: 20vw;
}
.chat-container {
  flex-grow: 1;
}

.scenario-image {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.scenario-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scenario-image h3 {
  color: #2c3e50;
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 600;
}

.scenario-image p {
  color: #7f8c8d;
  font-size: 1em;
}

.scenario-description {
  background: #ede7f6;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #673ab7;
  margin-bottom: 30px;
}

.scenario-description h2 {
  color: #512da8;
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 600;
}

.scenario-description p {
  color: #424242;
  font-size: 1.1em;
  line-height: 1.7;
}

.topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.topic {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.topic:hover {
  border-color: #673ab7;
  box-shadow: 0 4px 12px rgba(103, 58, 183, 0.1);
}

.topic h3 {
  color: #2c3e50;
  margin-bottom: 12px;
  font-size: 1.1em;
  font-weight: 600;
}

.topic p {
  color: #7f8c8d;
  font-size: 0.95em;
  line-height: 1.5;
}

.topic ul {
  margin-top: 10px;
  margin-left: 20px;
  color: #7f8c8d;
  font-size: 0.9em;
}

.topic ul li {
  margin-bottom: 5px;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  background: #673ab7;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(103, 58, 183, 0.3);
}

.cta-button:hover {
  background: #512da8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(103, 58, 183, 0.4);
}

.footer {
  text-align: center;
  padding: 20px;
  color: #7f8c8d;
  font-size: 0.9em;
}
.chat-container {
  /* width: 70%; */
  height: 1200px;
  display: none;
  min-width: 55vw;
}
.chat-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.responsive-flex {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1680px;
  justify-content: center;
}
.responsive-flex > div {
  margin: 0px 12px;
}
.scenario-description {
  display: none;
}
.topics {
  display: none;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .responsive-flex {
    flex-direction: column;
  }

  .header h1 {
    font-size: 2em;
  }

  .main-content {
    padding: 25px;
  }

  .topics {
    grid-template-columns: 1fr;
  }
}
