 :root {
    font-size: 16px; 
  }

  * {
    color: white;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
  }

  body {
    margin: 0;
    position: relative;
    min-height: 100vh;
    font-size: 1rem;
  }

  .main-background {
    background: url("flower1.jpg") no-repeat center center/cover;
    filter: blur(3px);
    opacity: 0.6;
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
  }

  header {
    background-color: #23162e;
    width: 100%;
    height: 120px;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  main {
    width: 80%;
    float: right;
    padding: 20px;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
  }

  aside {
    background-color: #2e2b4d;
    width: 20%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
    overflow-y: auto;
  }

  footer {
    background-color: #5D3C64;
    width: 100%;
    height: auto;
    clear: both;
    text-align: center;
    padding: 10px;
    color: #cac3d1;
    font-size: 0.8rem;
  }

  .footer1 {
    color: #ede4e4;
    font-size: 0.8rem;
  }

  aside ul {
    list-style: none;
    padding: 0;
  }

  aside li {
    margin: 0.5em 0;
  }

  aside a {
    text-decoration: none;
    color: #ffffff;
    background-color: #7B466A;
    padding: 0.5em 1em;
    border-radius: 8px;
    display: block;
    transition: background-color 0.3s;
    font-size: 0.9rem;
  }

  aside a:hover {
    background-color: #9F6496;
  }

  section {
    background-color: rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }

  section h2 {
    width: 100%;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
  }

  section img {
    flex: 0 0 40vw;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
  }

  section h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #ffccdd;
    margin-top: 15px;
  }

  section p, section ul {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    color: #ffffff;
  }

  section ul {
    flex: 1 1 50%;
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  section li {
    margin-bottom: 10px;
  }

  .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 20px;
  gap: 10px;
}


  .section-header h1 {
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .section-header button {
    position: absolute;
    right: 0;
    background-color: #7B466A;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
  }

  button:hover {
    background-color: #9F6496;
  }

  #comlabel {
    font-weight: bold;
    font-size: 1.1rem;
    color: #faf8f9;
  }

  .comment3 {
    width: 100%;
    padding: 10px;
    border: 1px solid #f3eff1;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
  }

  .comment-form {
    width: 70%;
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
  }

  #orderbutton,
  #submit-button {
    background-color: #7B466A;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
  }

  #orderbutton:hover,
  #submit-button:hover {
    background-color: #9F6496;
  }

  @media (max-width: 768px) {
    main {
      width: 100%;
      float: none;
    }

    aside {
      width: 100%;
      height: auto;
      position: relative;
    }

    section {
      flex-direction: column;
      align-items: flex-start;
    }

    .comment-form {
      width: 90%;
    }
  }
 
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
  }

  .section-header h1 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }

  .section-header button {
    position: static;
    font-size: 1rem;
    padding: 8px 16px;
  }
}

