/* Page container */
.page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #20435c;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 40px;
  margin-bottom: 15px;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #20435c;
  margin-top: 40px;
  margin-bottom: 15px;
}

/* Paragraph text */
p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Bullet lists */
ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* Call to Action button */
.cta-button {
  display: inline-block;
  background-color: #1a73e8; /* blue */
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #155ab6;
  cursor: pointer;
}

/* Section spacing */
.section {
  margin-bottom: 40px;
}

/* Highlight the baseline assessment callout */
.baseline-assessment {
  background-color: #f0f8ff;
  border-left: 4px solid #1a73e8;
  padding: 15px 20px;
  margin: 20px 0;
  font-style: italic;
  color: #20435c;
}
