:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --color-primary: #C89F91; /* A richer, warm beige */
    --color-dark: #2E282A; /* Dark charcoal/brown */
    --color-light: #FDFBF8; /* Soft off-white */
    --color-text: #333333;
}


.faq-container {
  max-width: 700px;
  margin: 50px auto;
  padding: 0 20px;
}

.faq-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #111;
}

.faq-divider {
  border: none;
  border-top: 1px solid #aaa;
  width: 100%;
  margin: 0 auto 30px auto;
}

.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
}

.custom-accordion .accordion-button {
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  padding: 25px 20px;
  border: none;
  box-shadow: none;
  justify-content: space-between;
}

.custom-accordion .accordion-button::after {
  transform: scale(1.2);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #f7f7f7;
  color: #000;
}

.custom-accordion .accordion-body {
  font-size: 0.95rem;
  color: #444;
  padding: 15px 20px;
}

/* Override Bootstrap's default accordion arrow */
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-size: 1.25rem;
  transition: transform 0.3s ease-in-out;
  transform: rotate(0deg); /* Default: pointing down */
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg); /* Expanded: pointing up */
}

