:root {
    --beige: #f9f4ef;
    --gold: #c8a97e;
    --soft-pink: #f3d9ca;
    --dark-text: #2a2a2a;
    --gray-text: #555555;
    --white: #ffffff;
  }
  
  body {
    margin: 0;
    font-family: "Noto Serif SC", serif, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--beige);
    color: var(--dark-text);
    line-height: 1.6;
  }
  
  header {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  header img {
    height: 60px;
  }
  
  nav a {
    color: var(--dark-text);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
    font-family: "Noto Serif SC", serif;
  }
  
  nav a:hover {
    color: var(--gold);
  }
  
  .hero {
    background: var(--soft-pink);
    text-align: center;
    padding: 80px 20px;
    border-bottom: 2px solid var(--gold);
  }
  
  .hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: "Noto Serif SC", serif;
    color: var(--dark-text);
  }
  
  .hero p {
    font-size: 1.5em;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(200, 169, 126, 0.3);
    font-family: "Noto Serif SC", serif;
  }
  
  h2 {
    text-align: center;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 2.4em;
  }
  
  .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .product {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(200, 169, 126, 0.2);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(200, 169, 126, 0.4);
  }
  
  .product img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  
  .product h3 {
    color: var(--dark-text);
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  
  .product p {
    color: var(--gray-text);
    font-size: 1em;
    line-height: 1.4;
  }
  
  form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
  }
  
  form input[type="text"],
  form input[type="email"],
  form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    font-size: 1em;
    color: var(--dark-text);
    font-family: "Noto Serif SC", serif;
    resize: vertical;
  }
  
  form input[type="submit"] {
    background-color: var(--gold);
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 15px 25px;
    font-size: 1.1em;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Noto Serif SC", serif;
  }
  
  form input[type="submit"]:hover {
    background-color: #a97a3a;
  }
  
  footer {
    background: var(--white);
    text-align: center;
    padding: 25px;
    border-top: 2px solid var(--gold);
    font-family: "Noto Serif SC", serif;
    color: var(--gray-text);
    font-size: 0.9em;
    margin-top: 60px;
  }
  
  @media (max-width: 600px) {
    header {
      flex-direction: column;
      text-align: center;
    }
    nav a {
      margin: 10px 15px;
      font-size: 1.2em;
    }
    .container {
      width: 90%;
      margin: 20px auto;
      padding: 20px;
    }
  }
  