main {
  width: 100%;
  /* background: #f1f9ff; */
  background: #ddedf9;
  padding-block: 60px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

section {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.header-faqs {
  width: 100%;
  position: relative;
}

.header-faqs::after {
  content: "";
  height: 5px;
  width: 100%;
  border-radius: 5px;
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.header-faqs h1 {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary-color);
}

section h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}

.accordion {
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.accordion-trigger {
  background: white;
  border: none;
  width: 100%;
  padding: 24px 32px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.625;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.accordion-indicator {
  transition: transform 0.3s ease;
  background-color: #f1f9ff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  flex: none;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.accordion-indicator svg {
  height: 24px;
  width: 24px;
  stroke: 2;
}

.accordion-trigger[aria-expanded="true"] .accordion-indicator {
  transform: rotate(180deg);
  background-color: var(--primary-color);
}

.accordion-trigger[aria-expanded="true"] .accordion-indicator svg {
  fill: #f1f9ff;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
  padding: 0 32px;
  font-size: 18px;
  line-height: 1.625;
}

.accordion-content.open {
  padding: 0px 32px 24px 32px;
  max-height: 500px;
}
