body {
      font-family: Georgia, serif;
      background-color: #faf3eb;  
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    section {
      background-color: white;
      border: 2px solid #d9a674;
      border-radius: 12px;
      padding: 30px 40px;
      max-width: 500px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    h1 {
      color: #7a3e00;
      margin-bottom: 10px;
    }

    h2 {
      color: #a66a2e;
      margin: 10px 0;
    }

    h3 {
      color: #8b5e3c;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    p {
      margin: 6px 0;
      color: #333;
    }

    ol, ul {
      text-align: left;
      display: inline-block;
      margin: 10px 0 20px 0;
    }

    ul ul {
      margin: 5px 0 5px 20px;
    }

    footer {
      margin-top: 20px;
      font-weight: bold;
      color: #5c3c1f;
    }