/* Ideas Page Specific Styles */
#idea-generation {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4vh;
  min-height: 80vh;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.iframe-container {
  margin-top: 2rem;
  width: 100%;
  max-width: 1200px;
  height: 700px;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.ul {
  text-align: left;
  font-size: 1rem;
  padding-left: 2rem;
  padding-right: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1250px) {
  .iframe-container {
    width: 95%;
    height: 600px;
  }
}

@media (max-width: 900px) {
  .iframe-container {
    width: 100%;
    height: 600px;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  #idea-generation {
    padding-top: 2vh;
  }

  .iframe-container {
    height: 500px;
    margin-top: 1rem;
  }

  .ul {
    padding-left: 2rem;
  }

  p, .ul {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .iframe-container {
    height: 400px;
  }
}