.faq-section {
  max-width: 1200px;
  margin: 2rem auto;
  font-family: sans-serif;
}

details {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: rgb(152, 234, 255,0.5);
  transition: all 0.3s ease;
}

details[open] {
  border-color: #3b82f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

summary {
  padding: 1rem;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  list-style: none; /* Hides default triangle in some browsers */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Custom arrow indicator */
summary::after {
  content: '▼';
  font-size: 0.8rem;
  transition: transform 0.3s;
}

details[open] summary::after {
  transform: rotate(180deg);
}

.content-faq {
  padding: 0 1rem 1rem;
  color: #000000;
  line-height: 1.6;
}

.p-faq {
   color: black; 
}

html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}



