
    :root {
      --primary-gold: #c5a059;
      --dark-grey: #2c2c2c;
      --light-bg: #fdfdfd;
      --accent-beige: #f9f6f2;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.8;
      color: var(--dark-grey);
      background-color: var(--light-bg);
      margin: 0;
    }

    .container {
      max-width: 960px;
      margin: auto;
      padding: 40px 20px;
    }

    header {
      background: var(--accent-beige);
      padding: 80px 0;
      text-align: center;
    }

    .product-tag {
      color: var(--primary-gold);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      margin: 10px 0;
    }

    .subtitle {
      font-style: italic;
      color: var(--primary-gold);
      font-size: 1.1rem;
    }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-top: 60px;
      border-left: 3px solid var(--primary-gold);
      padding-left: 15px;
    }

    p {
      font-weight: 300;
      font-size: 1.05rem;
      margin-top: 15px;
    }

    .product-card {
      display: flex;
      align-items: center;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 15px;
      padding: 30px;
      margin: 40px 0;
      transition: all 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    .cta-button {
      display: inline-block;
      padding: 12px 30px;
      background: var(--primary-gold);
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 20px;
    }

    .cta-button.dark {
      background: var(--dark-grey);
    }

    .table-container {
      overflow-x: auto;
      margin: 40px 0;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
    }

    th {
      background: var(--dark-grey);
      color: #fff;
      padding: 18px;
      font-size: 0.8rem;
      text-transform: uppercase;
    }

    td {
      padding: 18px;
      border-bottom: 1px solid #eee;
      text-align: center;
    }

    .faq-item {
      margin: 25px 0;
      border-bottom: 1px solid #eee;
      padding-bottom: 15px;
    }

    .faq-question {
      font-weight: 600;
    }

    .faq-answer {
      font-weight: 300;
      color: #666;
      margin-top: 8px;
    }

    footer {
      margin: 80px 0 40px;
      text-align: center;
      font-size: 0.8rem;
      color: #999;
    }

    @media (max-width: 768px) {
      h1 { font-size: 2rem; }
      .product-card { flex-direction: column; text-align: center; }
    }
  