body {
          background: linear-gradient(330deg, #d1ab4f, #fff4cf);
          font-family: 'Arial', sans-serif;
          color: #333;
          line-height: 1.3;
          min-height: 100vh;
        }

        .title-large {
          font-size: 45px;
          font-weight: bold;
          text-align: center;
          color: #000000;
        }

        .heading-small {
          font-weight: bold;
          font-size: 20px;
          text-align: center;
          color: #000000;
          margin: 10vh 10vw 0 10vw;
        }

        .subtitle-medium {
          font-weight: 5;
          font-size: 15px;
          text-align: center;
          color: #000000;
          margin-top: 10px;
          margin-bottom: 20px;
          width: 80%;
          max-width: 350px;
          display: block;
          margin-left: auto;
          margin-right: auto;
        }

        #welcomeScreen {
          text-align: center;
          padding: 20px 150px;
          justify-content: center;
        }

        #fttHeadshot {
          border-radius: 100px;
          border: 5px solid #55555555;
          width: 200px;
          height: 200px;
        }

        #fttHeadshotCaption {
            border-radius: 50px;
            border: solid 2px #d1ab4f;
            text-align: center;
            padding: 10px;
            margin-bottom: 10px;
            background: #ffffff;
        }

        .icon-item {
          margin: 0px 20px;
        }

        .icon-background {
          width: 70px;
          height: 70px;
          background: #ffffff;
          border-radius: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
        }

        .icon {
          width: 50px;
          height: 50px;
          background: #ffffff;
          border-radius: 100%;
        }

        .icon-text {
          font-size: 16px;
          color: #000000;
          margin-top: 10px;
        }

        #errorMessageContainer {
          background-color: #df0000;
          outline: 2px solid #ff0000;
          color: #000000;
          display: none;
          height: 60px;
          width: 450px;
          margin: 0 auto;
          border-radius: 15px;
          align-content: center;
        }


        .dot-container {
          text-align: center;
          padding-top: 5px;
          padding-bottom: 10px;
        }

        .dotlight {
          height: 5px;
          width: 5px;
          background-color: #bbb;
          border-radius: 50%;
          display: inline-block;
        }

        .dotdark {
          height: 5px;
          width: 5px;
          background-color: #000000;
          border-radius: 50%;
          display: inline-block;
        }

        #questionsContainer {
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
        }

        .concern-area-highlight {
          position: absolute;
          border-radius: 50%;
          background-color: rgba(255, 0, 0, 0.5);
          pointer-events: none;
        }

        .question {
          background-color: #ffffff;
          padding-top: 20px;
          padding-bottom: 0;
          margin-bottom: 40px;
          width: 80%;
          max-width: 450px;
          box-sizing: border-box;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          border-radius: 15px;
          box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
          min-height: 175px;
          position: relative;
        }

        .options-wrapper {
          display: flex;
          justify-content: space-evenly;
          margin-bottom: 20px;
        }

        .option-container {
          display: flex;
          flex: 1;
          justify-content: space-evenly;
          flex-direction: column;
          align-items: center;
          justify-content: center;
        }

        .option-container img {
          width: 80%;
          margin-bottom: 10px;
        }

        .text-container {
          padding-left: 20px;
          padding-right: 20px;
          text-align: center;
          justify-content: center;
        }

        label {
          display: block;
          margin-top: 5px;
          margin-bottom: 25px;
          color: #000000;
          font-weight: bold;
        }

        .allergyCheckbox {
          color: #000000;
          transition: all .4s;
        }

        .allergyCheckbox:hover {
          color: #d1ab4f;
          transform: translate(0, -2px);
          font-size: 18px;
        }

        select,
        ::picker(select) {
          appearance: base-select;
          border: none;
          background: transparent;
        }

        select {
          width: 95%;
          border-radius: 15px;
          border: 1px solid #000;
          background-color: #d6b36e;
          color: #000000;
          font-size: 15px;
          align-items: center;
          padding: 10px 20px;
          cursor: pointer;
        }

        select:hover,
        select:focus {
          outline: none !important;
          background-color: #f1d89c;
        }

        select::picker-icon {
          color: #000000;
          transition: 0.4s rotate;
        }

        select:open::picker-icon {
          rotate: 180deg;
        }

        option {
          gap: 20px;
          border: 2px solid #ddd;
          background: #eee;
          padding: 5px 10px;
          padding-right: 35px;
          justify-content: center;
          transition: all 0.4s;
        }

        option:first-of-type {
          border-radius: 8px 8px 0 0;
        }

        option:last-of-type {
          border-radius: 0 0 8px 8px;
        }

        option:not(option:last-of-type) {
          border-bottom: none;
        }

        option:nth-of-type(odd) {
        background: #fff;
        }

        option:hover {
          background: #525A4F;
          font-weight: bold;
          font-size: 18px;
          color: #f1d89c;
        }


        .full-width-bar {
          display: block;
          width: 100%;
          height: 50px;
          margin: 10px 0;
          padding: 10px 0;
          background-color: #e0e0e0;
          color: #000;
          font-size: 15px;
          font-weight: normal;
          border: none;
          border-radius: 0;
          cursor: pointer;
          font-size: 15px;
          text-align: center;
          outline: none;
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
        }

        .full-width-bar:hover,
        .full-width-bar:focus {
          background-color: #ccc;
        }

        #btn-bio {
          border-radius: 10px;
          padding: 10px;
          margin-top: 10px;
          width: 200px;
          background:#ffffff;
          color:#b0893d;
          font-size:16px;
          cursor: pointer;
          height: 40px;
          font-weight: 600;
          transition: all .4s;
        }

        #btn-bio:hover {
          width: 250px;
          background: #E1D9D1;
        }

        .btn-start {
          background:#ffffff;
          color:#000000;
          border: none;
          border-radius: 15px;
          cursor: pointer;
          font-weight: 600;
          font-size: 20px;
          margin: 10px 0px;
          outline: 2px solid #000000;
          width: 150px;
          height: 50px;
          transition: all .4s;
        }

        .btn-start:hover {
          background: #E1D9D1;
          width: 450px;
          font-weight: 900;
        }

        .btn-back {
          background:#ffffff;
          color:#000000;
          border: none;
          border-radius: 15px;
          cursor: pointer;
          margin: 10px 0px;
          width: 100px;
          height: 40px;
          transition: all .4s;
        }

        .btn-back:hover {
          background: #f1d89c;
          transform: translate(0, -5px);
          
        }

        .btn-next {
          background:#f1d89c;
          color:#000000;
          border: none;
          border-radius: 15px;
          cursor: pointer;
          margin: 10px 0px;
          width: 100px;
          height: 40px;
          transition: all .4s;
        }

        .btn-next:hover {
          background: #b0893d;
          transform: translate(0, -5px);
        }

        .button-space {
          margin-right: 100px;
          margin-left: 100px;
        }

        .btn-option {
          background: #f1d89c;
          color: #000;
          margin: 10px;
          border: none;
          border-radius: 20px;
          outline: 2px solid #000;
          padding: 10px 20px;
          font-weight: 550;
          font-size: 16px;
          height: 50px;
          width: 150px;
          cursor: pointer;
          text-align: center;
          align-items: center;
          justify-content: center;
          transition: all .4s;
        }

        .btn-option:hover {
          background: #b0893d;
          width: 250px;
          font-size: 20px;
        }

        .btn-buyNow {
          border-radius: 20px;
          background: #f1d89c;
          color: #262820;
          font-size: 16px;
          font-weight: bold;
          cursor: pointer;
          width: 200px;
          height: 40px;
          margin: 0 50px;
          transition: all .4s;
        }

        .btn-buyNow:hover {
          background: #525A4F;
          color: #f1d89c;
          margin: 0 0;
          width: 300px;
        }

        #btn-enquiry {
          border-radius: 20px;
          background: #f1d89c;
          color: #262820;
          font-size: 16px;
          font-weight: bold;
          cursor: pointer;
          width: 250px;
          height: 40px;
          margin: 0 50px;
          transition: all .4s;
        }

        #btn-enquiry:hover {
          background: #525A4F;
          color: #f1d89c;
          width: 350px;
        }

        #btn-answer {
          border-radius: 20px;
          background: #f1d89c;
          color: #262820;
          font-size: 16px;
          font-weight: bold;
          cursor: pointer;
          width: 250px;
          height: 40px;
          margin: 0 50px;
          transition: all .4s;
        }

        #btn-answer:hover {
          background: #525A4F;
          color: #f1d89c;
          width: 350px;
        }

        #exitPointParagraph {
          padding: 0px 40px;
        }

        #allergyForm {
          accent-color: #d1ab4f;
        }

        /* Slide in from the right */
        @keyframes slideInRight {
          from {
            opacity: 0;
            transform: translateX(100%);
          }

          to {
            opacity: 1;
            transform: translateX(0);
          }
        }

        /* Slide out to the left */
        @keyframes slideOutLeft {
          from {
            opacity: 1;
            transform: translateX(0);
          }

          to {
            opacity: 0;
            transform: translateX(-100%);
          }
        }

        /* Slide in from the left */
        @keyframes slideInLeft {
          from {
            opacity: 0;
            transform: translateX(-100%);
          }

          to {
            opacity: 1;
            transform: translateX(0);
          }
        }

        /* Slide out to the right */
        @keyframes slideOutRight {
          from {
            opacity: 1;
            transform: translateX(0);
          }

          to {
            opacity: 0;
            transform: translateX(100%);
          }
        }

        .question-slide-in-reverse {
          animation: slideInLeft 0.5s forwards;
        }

        .question-slide-out-reverse {
          animation: slideOutRight 0.5s forwards;
        }

        .question-slide-in,
        .suggestions-slide-in {
          animation: slideInRight 0.5s forwards;
        }

        .question-slide-out {
          animation: slideOutLeft 0.5s forwards;
        }

        #areaList {
          flex: 1;
          padding-top: 20px;
          padding-right: 50px;
        }

        #suggestionResult {
          padding: 0;
          margin: 0 auto;
          padding-top: 5px;
          border-radius: 15px;
          width: 100%;
          text-align: center;
          justify-content: center;
          align-items: center;
          padding-bottom: 30px;
        }

        #suggestionResult h2 {
          color: #333;
          font-size: 36px;
          font-weight: bold;
        }

        #suggestionResult ul {
          /* Remove default list styling */
          padding: 0;
          margin: 0; /* Ensure ul doesn't have default margin */
        }

        #suggestionResult li {
          margin: 10px auto;
          padding-top: 10px;
          padding-bottom: 10px;
          font-weight: medium;
          width: 100%;
          display: block;
          overflow: hidden;
        }

        /* Adjustments for animations */
        .suggestions-slide-in {
          animation: slideInRight 0.5s forwards;
          /* Reuse existing slide-in animation */
        }

        .option-container {
          text-align: center;
          margin-bottom: 20px;
        }

        .option-container img {
          max-width: 100%;
          border: 1px solid #ccc;
          cursor: pointer;
          transition: all .4s ease;
        }

        .option-container img:hover {
          transform: scale(1.1);
        }

        .select-button {
          background: #ffffff;
          border: 1px solid #000000;
          border-radius: 5px;
          cursor: pointer;
          font-size: 16px;
          font-weight: 600;
          margin-top: 30px;
          margin-bottom: 10px;
          padding: 10px 15px;
        }

        .select-button:hover {
          background: #f8f8f8;
        }

        rect:hover {
          cursor: pointer;
        }

        .hover_group:hover {
          opacity: 1;
        }

        #concernAreaSvg {
          position: relative;
          width: 100%;
          padding-bottom: 77%;
          vertical-align: middle;
          margin: 0;
          overflow: hidden;
          background: lightgreen;
        }

        #concernAreaSvg svg {
          display: inline-block;
          position: absolute;
          top: 0;
          left: 0;
        }

        #generalContainer {
          padding: 0 40px;
          border-radius: 15px;
          text-align: center;
        }

        .complexity-container {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 20px;
        }

        .advanced-item {
          background-color: #ffffffb3;
          padding: 20px;
          border-radius: 15px;
          box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
          max-width: 400px;
          text-align: center;
          box-sizing: border-box;
          transition: all .4s;
        }

        .advanced-item:hover {
          transform: translate(0, -15px);
          background-color: #ffffffff;
          box-shadow: 2px 4px 10px #000000;
        }

        .advanced-item img.product-image {
          width: 100px;
          margin-bottom: 20px;
          border-radius: 15px;
        }

        .advanced-item h3 {
          font-size: 20px;
          font-weight: bold;
          margin-bottom: 10px;
        }

        .advanced-item p {
          font-size: 14px;
          line-height: 1.5;
          color: #333;
        }

        .complexCaption {
          padding: 0px 15vw 40px;
        }

        .confirmTerms {
          margin: 10px 20%;
          border-radius: 10px;
          padding: 10px;
          font-weight: normal;
          color:#000000 !important;
          transition: all .4s;
        }

        .confirmTerms:hover {
          background:#ffffff;
          border: 1px solid;
          box-shadow: 0px 4px 20px #00000033;
        }

        .terms {
          font-size: 12px;
          padding: 0px 20%;
          color: #000000
        }

        .modal-container {
          position: fixed;
          left: 0;
          top: 0;
          z-index: 1;
          width: 100%;
          height: 100%;
          background-color: #00000066;
        }

        .modal {
          width: 60%;
          max-height: 80%;
          box-shadow: 0px 4px 20px #00000033;
          position: fixed;
          overflow: auto;
          border-radius: 15px;
          right: 50%;
          bottom: 50%;
          transform: translate(50%, 50%);
        }

        .modal-content {
            background-color: #fefefe;
            padding: 50px;
        }

        .modal-trigger {
          margin-top: 20px;
          text-decoration: underline;
          cursor: pointer;
          border: none;
          border-radius: 15px;
        }

        .close {
          color: #aaaaaa;
          float: right;
          font-size: 50px;
        }

        .close:hover,
        .close:focus {
          color: #000;
          text-decoration: none;
          cursor: pointer;
        }

        #stringList {
          font-size:small;
        }

      @media (max-width: 768px) {
        .heading-small img {
          width: 100%;
          height: auto;
        }

        .title-large {
          font-size: 2rem;
          text-align: center;
          padding: 10px;
        }

        .subtitle-medium {
          font-size: 1rem;
          padding: 10px;
          width: 90%;
        }

        #welcomeScreen {
          padding: 20px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
        }

        #fttHeadshot {
          width: 150px;
          height: 150px;
          margin-bottom: 20px;
        }

        #fttHeadshotCaption {
          font-size: 1rem;
          padding: 10px 30px;
          margin: 5vw;
        }

        .confirmTerms {
          font-size: 0.9rem;
          padding: 10px;
          text-align: center;
          display: block;
        }

        .terms {
          font-size: 0.85rem;
          padding: 30px;
          text-align: justify;
        }

        .icon-item {
          width: 100%;
          margin: 10px 0;
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        .icon-background {
          width: 60px;
          height: 60px;
        }

        .icon {
          width: 40px;
          height: 40px;
        }

        .icon-text {
          font-size: 0.9rem;
          text-align: center;
        }

        #btn-bio {
          width: 100%;
          font-size: 1rem;
          padding: 12px;
          transition: all 500000s;
        }

        .btn-start {
          width: 90%;
          font-size: 1rem;
          padding: 12px;
        }

        .btn-start:hover {
          background: #E1D9D1;
          width: 90%;
          font-weight: 900;
        }

        #errorMessageContainer {
            width:auto;
            height: auto;
            font-size: 0.7rem;
            height: auto;
            padding: 10px;
        }

        #btn-enquiry {
          transition: all 500000s;
        }

        #btn-answer {
          transition: all 500000s;
        }

        .modal {
          width: 80%;
        }
      }