.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  padding: 1.5rem 2rem;
  border-left: 5px solid #C0392B;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
  font-family: 'Merriweather', Georgia, serif;
}

.faq-answer {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
}

.faq-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #C0392B 0%, #922B21 100%);
  border-radius: 16px;
  text-align: center;
  color: #fff;
}

.faq-cta h2 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.faq-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.faq-cta .btn {
  display: inline-block;
  background: linear-gradient(90deg, #f8d46a, #e0b84c);
  color: #111;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}


@media (max-width: 500px) {
  .faq-section {
    padding: 0 0;
  }
}

/* details/summary accordion styles */
details.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  border-left: 4px solid #C0392B;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

details.faq-item[open] {
  padding-bottom: 0.75rem;
}

details.faq-item summary.faq-question {
  cursor: pointer;
  list-style: none;
  font-size: 1.125rem;
  font-weight: 800;
  color: #111;
  padding: 0.6rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

details.faq-item summary.faq-question::-webkit-details-marker { display:none; }

details.faq-item summary.faq-question::after {
  content: '\25BE';
  transition: transform 0.22s ease;
  font-size: 0.95rem;
  color: #666;
}

details.faq-item[open] summary.faq-question::after { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.32s ease, opacity 0.28s ease; padding: 0 0.5rem; }
details.faq-item[open] .faq-answer { max-height: 480px; opacity: 1; margin-top: 0.5rem; }

