body {
      margin: 0;
      font-family: 'Karla', 'Bagnard', Calibri, sans-serif;
      background-color: #f8f4e8;
      color: #856154;
      /* #856154 = brown
      #ffe497 = butter yellow
      #dcb68a = desert mist (beige)
      #b6bca4 = celadon green 
      #74805c = aloe
      #f8f4e8 = linen */
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat991.cur), auto !important;
    }

    a:hover {
      cursor: url(https://cur.cursors-4u.net/others/oth-6/oth654.cur), auto !important;
    }

    .container {
      display: flex;
      gap: 20px;
      padding: 20px;
      flex-wrap: wrap;
      max-width: 1000px;
    }

    .left{
        display: flex;
      flex-direction: column;
      flex: 1;
      min-width: 280px;
    }
    
    .right {
      display: flex;
      flex-direction: column;
      flex: 2;
      min-width: 180px;
    }

    .left {
      gap: 20px;
    }

    .right {
      gap: 0;
    }

    .box {
      background-color: white;
      border: 4px solid #856154;
      border-radius: 10px;
      padding: 10px;
      box-sizing: border-box;
      box-shadow: 0 4px 20px #dcb68a ;
    }

    .image-box img {
      width: 100%;
      border-radius: 8px;
    }

    .links-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      text-align: center;
    }

    .links-box a {
      display: block;
      padding: 10px;
      background-color: #856154;
      border-radius: 10px ;
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
    }

    .links-box a:hover {
      background-color: #b6bca4;
    }

    .right .box {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* right text box */
    .inner-box {
      flex: 1;
      max-height: 500px;
      background-color: white;
      border: 2px solid #dcb68a;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 10px;
      box-shadow: 0 4px 20px #dcb68a;
      overflow-y: auto;
    }

    .inner-box h2 {
      color: #74805c;
      font-family: 'Bagnard';
      font-size: 1.4rem;
      margin: 0 0 10px;
      border-bottom: 2px solid #ffe497;
      padding-bottom: 5px;
    }

    .inner-box strong {
      color: #b6bca4;
    }

    .inner-box u {
      text-decoration-color: #ffe497;
      text-underline-offset: 3px;
    }

    .inner-box em {
      color: #74805c;
    }

    .inner-box a {
      color: #74805c;
      text-decoration: double underline #ffe497;
      text-underline-offset: 3px;
    }

    .banner-img {
      width: 100%;
      height: 30%;
      border-radius: 10px;
      border: 2px solid #dcb68a;
      box-shadow: 0 4px 15px #dcb68a;
      object-fit: fill;
      object-position: center;
    }

    /* left text box */
    .text-box {
      max-height: 250px;
      overflow-y: auto;
    }

    .heading-wrap {
      border-bottom: 2px solid #ffe497;
      margin-bottom: 15px;
    }

    .heading-wrap h2 {
      color: #74805c;
      font-family: 'Bagnard';
      font-size: 1.5rem;
      margin: 0;
      padding-bottom: 8px;
    }

    .text-box strong, 
    .text-box b {
      font-weight: bold;
      color: #b6bca4;
    }

    .text-box u {
      text-decoration: underline;
      text-decoration-color: #ffe497;
      text-underline-offset: 3px;
    }

    .text-box em,
    .text-box i {
      font-style: italic;
      color: #74805c;
    }

    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: white;
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb {
      background: #ffe1f0;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #ffe1f0;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        align-items: stretch;
      }

      .right .box {
        height: auto;
      }
    }
