*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}
body{
    background-color:  hsl(275, 100%, 97%);

}


.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -13rem;
}


.faq-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 600px;
}
.faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.faq-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(292, 42%, 14%);
}

.faq-icon {
  font-size: 1.5rem;
}

.faq-item {
  border-top: 1px solid #e8e8e8;
  padding: 1.25rem 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(292, 42%, 14%);
  text-align: left;
}

.faq-question:hover {
  color: purple;
}

.faq-question:focus-visible {
  outline: 2px solid purple;
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-icon-btn:before {
  content: '+';
  font-size: 1.25rem;
  color: white;
  background: purple;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question[aria-expanded="true"] .faq-icon-btn:before {
  content: '−';
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
}

.faq-answer p {
  padding-top: 1rem;
  font-size: 0.95rem;
  color: hsl(292, 42%, 14%);
  line-height: 1.6;
}