/* Apple-style clean FAQ cards */
.faq-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.faq-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1.5rem 1.75rem;
  transition: box-shadow 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0071e3; /* Apple blue */
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:focus {
  outline: 2px solid #0071e3;
  outline-offset: 4px;
}

.arrow {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 1rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}
