 .container {
      max-width: 900px;
      margin: 50px auto;
      padding: 30px;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    h1 {
      color: #198754;
      text-align: center;
      margin-bottom: 30px;
    }

    h2 {
      color: #146c43;
      margin-top: 30px;
      margin-bottom: 10px;
    }

    p {
      line-height: 1.8;
      margin-bottom: 15px;
    }

    ul {
      padding-left: 20px;
    }

    ul li {
      margin-bottom: 10px;
    }

    a {
      color: #198754;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .container {
        margin: 20px;
        padding: 20px;
      }
    }