  .faq-container {
    max-width: 900px;
    margin: auto;
  }

  .faq-container h1 {
    text-align: center;
    color: #bfa059;
    margin-bottom: 30px;
  }

  .faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  .faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    background: #bfa059;
    color: white;
    transition: background 0.3s;
  }

  .faq-question:hover {
    background: #a88c45;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff8e1;
    padding: 0 20px;
  }

  .faq-answer p {
    margin: 15px 0;
  }

  .faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
  }

  .faq-item.active .faq-question::after {
    content: "-";
    transform: rotate(180deg);
  }

  .faq-item.active .faq-answer {
    max-height: 2000px; /*  adjust based on content */
    padding: 15px 20px;
  }

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #b8860b;
  font-size: 1.4rem;
  border-bottom: 2px solid #f2c94c;
  padding-bottom: 6px;
  margin: 25px 0 10px;
}

.section-title .icon svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.gold-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  background-color: #fffdf2;
  border: 1px solid #e0d9b5;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.gold-comparison-table th,
.gold-comparison-table td {
  border: 1px solid #e8e2bf;
  padding: 10px 12px;
  text-align: center;
}

.gold-comparison-table th {
  background-color: #f7eebd;
  color: #5a4a1d;
  font-weight: 600;
}

.gold-comparison-table tr:nth-child(even) {
  background-color: #fff9e6;
}

.gold-comparison-image {
  text-align: center;
  margin-top: 25px;
}

.gold-comparison-image img {
  width: 80%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.gold-points {
  list-style: none;
  padding-left: 1rem;
  margin-top: 10px;
}

.gold-points li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.gold-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: goldenrod; /* gold accent bullet */
  font-size: 1.2rem;
  line-height: 1.2;
}

