
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      height: 100%;
      font-family: Arial, sans-serif;
      color: #222;
    }

    body {
      background: url('background.png') no-repeat center bottom fixed;
      background-size: cover;
    }

    .content {
      max-width: 800px;
      margin: 0 auto;
      background-color: #fff;
      padding: 2rem 1rem;
      min-height: 100vh;
    }

    header {
      text-align: center;
      padding: 2rem 1rem 1rem;
      background-color: #81A969;
      color: #fff;
      border-bottom: 2px solid #f4e3c1;
    }

    header img.logo {
      max-width: 100%;
      height: auto;
      margin-bottom: 0.5rem;
      max-height: 5em;
    }

    header p {
      font-size: 1.1rem;
      color: #e3e3e3;
    }

    section {
      margin-top: 2rem;
    }

    h2 {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      border-bottom: 1px solid #ccc;
      padding-bottom: 0.3rem;
    }

    ul {
      padding-left: 1.5rem;
      list-style-type: disc;
    }

    a.button {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.75rem 1.5rem;
      background-color: #f8c146;
      color: #000;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }

    a.button:hover {
      background-color: #ffdb70;
    }

    .share-buttons {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .share-buttons a {
      background-color: #81A969;
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.2s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .share-buttons a:hover {
      background-color: #6f9659;
    }

    .share-buttons svg {
      width: 1em;
      height: 1em;
      fill: white;
    }

    footer {
      text-align: center;
      margin-top: 3rem;
      font-size: 0.9rem;
      color: #666;
    }

    footer a {
      color: #666;
      text-decoration: underline;
      margin: 0 0.5rem;
    }

    @media (max-width: 600px) {
      header img.logo {
        width: 100%;
      }

      h2 {
        font-size: 1.5rem;
      }
    }