
    /* Styles for your PageVis design. Edit to change colors, sizes, etc. */
    /* Generated by PageVis (https://kappter.github.io/PageVis/) */
    body {
      /* Sets the page background and layout */
      font-family: 'Inter', Garamond, serif;
      background-color: rgb(140, 174, 104);
      margin: 0;
      padding: 10px 0;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    .page-container {
      /* Main container for all sections */
      background-color: #ffffff;
      border-radius: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      position: relative;
      margin: 10px auto;
      width: 960px; height: auto;
      
    }
    header {
      /* Styles the header section */
      height: 20%;
      min-height: 80px;
      background-color: rgb(245, 213, 237);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    header h1 {
      /* Styles the header title */
      font-size: 24px;
      color: #fff;
      margin: 0;
      text-align: center;
    }
    nav {
      /* Styles the navigation bar */
      height: 30px;
      width: 100%;
      background-color: rgb(235, 185, 223);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      padding: 0 10px;
    }
    nav a {
      /* Styles navigation links */
      color: #fff;
      text-decoration: none;
      font-size: 14px;
    }
    nav a:hover {
      /* Hover effect for navigation links */
      text-decoration: underline;
    }
    main {
      /* Styles the main content area */
      height: auto;
      min-height: 400px;
      background-color: rgb(255, 255, 255);
      padding: 10px;
      box-sizing: border-box;
    }
    main p, main h2, main ul {
      /* Styles content text and lists */
      margin: 0 0 10px 0;
      font-size: 16px;
      color: #222;
    }
    main img {
      /* Styles content images */
      max-width: 100%;
      height: auto;
      display: block;
    }
    main ul {
      /* Styles content lists */
      padding-left: 20px;
    }
    footer {
      /* Styles the footer section */
      height: 20%;
      min-height: 80px;
      background-color: rgb(245, 213, 237);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    footer p {
      /* Styles footer text */
      margin: 0;
      font-size: 14px;
      color: #fff;
    }
    .accent {
      /* Accent: Decorative circle. Edit size, shape, or position here */
      position: absolute;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      bottom: 20px;
      right: 20px;
      background-color: rgb(235, 185, 223);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .accent a {
      /* Styles back-to-top link (if enabled) */
      color: #fff;
      text-decoration: none;
      font-size: 24px;
    }
    .accent a:hover {
      /* Hover effect for back-to-top link */
      text-decoration: underline;
    }
  
