    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    header {
      background-color: #F5E9D8;
      color: white;
      padding: 1rem;
      justify-content: center;
      display: center;
      text-align: center;
    }
    .menu {
      margin: 20px 0;
      text-align: center;
    }
    .menu button {
      margin: 10px;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
    }
    main {
      padding: 2rem;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .sharp-outline-text {
      font-family: Arial, sans-serif;
      color: white; /* Inner fill color */
      -webkit-text-stroke: 2px #7A9D76; /* Outer border color */
      font-size: 60px;
    }
    .container {
      width: 800px;
      text-align: left;
      margin: 1.5rem auto;
      font-size: 18px;
      text-align: center;
      padding: 1rem;
      background-color: #F5E9D8;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .clickable-area {
      position: relative;
      width: 5.67%;
      height: 8.70%;
      background-color: transparent;
      cursor: pointer;
      transform: translate(-50%, -50%);
    }
    .hover-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      background-color: transparent;
      border: 3px solid #7A9D76;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none; /* so it doesn't block clicks */
    }
    .clickable-area:hover .hover-circle {
      opacity: 1;
      background-color: transparent;
      transform: translate(-50%, -50%);
      cursor: pointer;
    }
    .submenu {
      text-align: center;
      margin-top: 1rem;
    }
    .submenu button {
      margin: 0.3rem;
      padding: 0.5rem 1rem;
      font-size: 16px;
      background-color: #eee;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .submenu button:hover {
      background-color: #ddd;
    }
    .submenu button.active-sub {
      background-color: #C8A97E;
      color: white;
    }