.container {
  max-width: 90%;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9; /* subtle background, change or remove if you want */
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  text-align: center;
  box-sizing: border-box;
}

/* Sections stacked with spacing */
.container section {
  margin-bottom: 30px;
}

/* Headings style */
.container section h2 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #333;
  font-size: 1.8rem;
}

/* Paragraph style */
.container section p {
  line-height: 1.6;
  color: #555;
  font-size: 1rem;
}
.container section p {
  white-space: pre-wrap!important;
  margin-bottom: 1em;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .container {
    max-width: 90%; /* almost full width on small screens */
    padding: 15px;
  }

  .container section h2 {
    font-size: 1.5rem;
  }

  .container section p {
    font-size: 0.95rem;
  }
}
