/* Base layout */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: 40px;
}

/* Headings */
h1 {
  font-size: 2em;
  color: #2c3e50;
  margin-bottom: 12px;
}

h2 {
  font-size: 1.6em;
  color: #34495e;
  margin-top: 32px;
}

h3 {
  font-size: 1.3em;
  color: #444;
  margin-top: 24px;
}

/* Paragraphs and Lists */
p {
  font-size: 1rem;
  line-height: 1.6;
}

ul {
  padding-left: 20px;
  margin-top: 12px;
}

li {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Strong tags for highlights */
strong {
  color: #2c3e50;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .container {
    padding: 16px;
    margin-top: 20px;
  }

  h1 {
    font-size: 1.6em;
  }

  h2 {
    font-size: 1.3em;
  }

  h3 {
    font-size: 1.1em;
  }
}

