@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  color: #222;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1, h2 {
  color: #033cad;
}

p {
  line-height: 1.8;
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1.2em;
}

.cta-box {
  background: #033cad;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
}

.cta-box a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.related-posts ul {
  padding-left: 1.2em;
}

.related-posts li a {
  color: #033cad;
  text-decoration: none;
}

.related-posts li a:hover {
  text-decoration: underline;
}