/* Content Section Module */
.content-section {
  padding: 30px 20px 60px 20px;
  background-color: #ffffff;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 20px;
  line-height: 1.7;
  color: #64748b;
}

/* Headings within content */
.content-wrapper h2 {
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #070E51;
  margin: 48px 0 24px 0;
  line-height: 1.2;
}

.content-wrapper h3 {
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #070E51;
  margin: 36px 0 20px 0;
  line-height: 1.3;
}

/* Paragraphs */
.content-wrapper p {
  margin-bottom: 24px;
}

.content-wrapper p:last-child {
  margin-bottom: 0;
}

/* Strong/Bold text */
.content-wrapper strong,
.content-wrapper b {
  font-weight: 600;
  color: #070E51;
}

/* Links */
.content-wrapper a {
  color: #25B9C9;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.content-wrapper a:hover {
  color: #070E51;
}

/* Lists */
.content-wrapper ul,
.content-wrapper ol {
  margin: 24px 0;
  padding-left: 32px;
}

.content-wrapper li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Blockquotes */
.content-wrapper blockquote {
  border-left: 4px solid #25B9C9;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #475569;
}

/* Horizontal rule */
.content-wrapper hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 48px 0;
}

/* Special callout styling */
.content-wrapper .callout {
  background: #f8fafc;
  border-left: 4px solid #F9A11A;
  padding: 24px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .content-section {
    padding: 20px 20px 40px 20px;
  }
  
  .content-wrapper {
    font