body{
  background:var(--bg);
  color:var(--text);
  font-family:Inter,system-ui;
}
.container{
  max-width:1100px;
  margin:auto;
  padding:40px 16px;
}
section{margin-top:60px}
h1{font-size:42px;margin-bottom:16px}
h2{margin-bottom:16px}
p{color:var(--muted);line-height:1.6}

@media (max-width: 768px) {

  .container {
    padding: 24px 14px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

  section {
    margin-top: 40px;
  }
}
