 /* Global Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      margin: auto;
      width: 92%;
      max-width: 960px;
      font-family: sans-serif;
      line-height: 1.6;
      color: #444;
      background: #fafafa;
    }

    /* Header */
    header {
      padding: 1rem 0;
      border-bottom: 2px solid #e0e0e0;
    }

    .top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .top img {
      width: 80px;
    }

    .top h1 {
      font-size: 1.5rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      color: #666;
    }

    /* Section */
    section {
      padding: 1rem 0;
    }

    section p, section ul {
      margin-bottom: 1rem;
      text-align: justify;
    }

    ul {
      padding-left: 1.2rem;
    }

    strong { color: #333; }

    hr {
      border: none;
      height: 1px;
      background: #ccc;
      margin: 1rem 0;
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 1rem 0;
      border-top: 2px solid #e0e0e0;
      margin-top: 2rem;
      font-size: 0.9rem;
    }

    footer span { color: #888; }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .top {
        flex-direction: column;
        text-align: center;
      }

      .top img {
        margin-bottom: 0.5rem;
      }

      .top h1 {
        font-size: 1.3rem;
      }

      body {
        width: 96%;
      }
    }