
.light-theme body {
  background: #f7f7f7;
  color: #222;
}
.light-theme main,
.light-theme .container-ml {
  background: #fff;
  color: #222;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.light-theme h1,
.light-theme h2,
.light-theme h3 {
  color: #222;
}
.light-theme p,
.light-theme li,
.light-theme span {
  color: #222;
}

.light-theme footer {
  background: #f0f0f0;
  color: #222;
}
.light-theme footer a {
  color: #181818;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #181818;
  overflow-x: hidden;
}

main {
  max-width: 700px;
  margin: 120px auto 40px auto;
  padding: 40px 32px;
  background: #202020;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f5f5f5;
}

main h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 0.02em;
}

main p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}


@media (max-width: 768px) {
  main {
    margin: 200px 16px 20px 16px;
    padding: 24px 16px;
  }
  main h1 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  main p {
    font-size: 1rem;
    margin-bottom: 8px;
    text-align: left;
    word-break: break-word;
    white-space: normal;
  }

}