body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff8f0;
    color: #333;
  }
  header {
    background-color: #7b0f1c; /* deep red wine tone */
    color: #fff; /* white text */
    padding: 1rem;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  nav {
    margin-top: 1rem;
    text-align: center;
  }
  nav button {
    background-color: #fff;
    color: #7b0f1c;
    border: 1px solid #7b0f1c;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
  }
  nav button:hover {
    background-color: #f4e3e7;
  }
  .container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
  }
  .section {
    margin-bottom: 2rem;
  }
  .product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .product {
    background: white;
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: 8px;
    width: 250px;
    text-align: center;
  }
  .product img {
    max-width: 100%;
    border-radius: 8px;
  }
  .carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fdf3e7;
    border-radius: 10px;
    padding: 1rem;
  }
  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  .testimonial {
    min-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .contact-form button {
    background-color: #2a9d8f;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
  }
  footer {
    text-align: center;
    padding: 1rem;
    background: #264653;
    color: white;
  }

  @media (max-width: 600px) {
    .product-list {
      flex-direction: column;
      align-items: center;
    }
  
    .product {
      width: 90%;
    }
  
    .testimonial {
      font-size: 0.95rem;
      text-align: center;
    }
  
    nav button {
      display: block;
      margin: 0.5rem auto;
      width: 80%;
    }
  }