.faq-section {
  padding: 60px 0 20px 0;
  background: var(--white);
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  justify-items: center;
}

/* === Native FAQ: category level === */
.faq-category-native {
  width: 100%;
  max-width: 100%;
}

.faq-category-heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--light-bg);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-teal);
  text-align: center;
  position: relative;
  list-style: none;
}

.faq-category-heading::-webkit-details-marker { display: none; }
.faq-category-heading::marker { display: none; content: ''; }

.faq-category-heading::after {
  content: '+';
  position: absolute;
  right: 16px;
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-category-native[open] > .faq-category-heading::after {
  content: '\2212';
}

.faq-category-native[open] > .faq-category-heading {
  color: var(--orange);
}

/* === Native FAQ: question/answer level === */
.faq-native-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.faq-native {
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-native summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  cursor: pointer;
  color: var(--dark-teal);
  font-weight: 600;
  text-align: left;
  list-style: none;
}

.faq-native summary::-webkit-details-marker { display: none; }
.faq-native summary::marker { display: none; content: ''; }

.faq-native summary::after {
  content: '+';
  color: var(--orange);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-native[open] summary {
  color: var(--orange);
}

.faq-native[open] summary::after {
  content: '\2212';
}

.faq-native-body {
  padding: 20px 16px;
  background: var(--light-bg);
  border-top: 1px solid var(--border-light);
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-native-body p {
  margin: 0 0 12px 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-native-body p:last-child {
  margin-bottom: 0;
}

.faq-native-body ul {
  margin: 0 0 12px 18px;
  padding-left: 0;
}

.faq-native-body ul:last-child {
  margin-bottom: 0;
}

.faq-native-body li {
  margin-bottom: 8px;
}

.faq-native-body li:last-child {
  margin-bottom: 0;
}

.faq-native-body a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.faq-native-body a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .faq-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
