.accordion {
  width: 100%;
  padding: 2rem 0;
}
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1012px;
}
.accordion-item {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--light-blue);
}
.accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 4rem 1rem 2rem;
  background: var(--light-blue);
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  text-align: left;
  position: relative;
}
.accordion-toggle:hover::before {
  background-color: var(--medium-blue);
}
.accordion-toggle:hover[aria-expanded=true]::before {
  background-color: var(--medium-orange);
}
.accordion-toggle::before {
  content: "";
  position: absolute;
  right: calc(2rem - 5px);
  top: 50%;
  width: 25px;
  height: 25px;
  background-color: var(--new-blue);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}
.accordion-toggle::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%) rotate(0deg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' fill='none'><path d='M8.3999 6.40039V1.40039C8.3999 1.13517 8.29455 0.88082 8.10701 0.693284C7.91947 0.505748 7.66512 0.400391 7.3999 0.400391C7.13469 0.400391 6.88033 0.505748 6.6928 0.693284C6.50526 0.88082 6.3999 1.13517 6.3999 1.40039V6.40039H1.3999C1.13469 6.40039 0.880332 6.50575 0.692796 6.69328C0.505259 6.88082 0.399902 7.13517 0.399902 7.40039C0.399902 7.66561 0.505259 7.91996 0.692796 8.1075C0.880332 8.29503 1.13469 8.40039 1.3999 8.40039H6.3999V13.4004C6.3999 13.6656 6.50526 13.92 6.6928 14.1075C6.88033 14.295 7.13469 14.4004 7.3999 14.4004C7.66512 14.4004 7.91947 14.295 8.10701 14.1075C8.29455 13.92 8.3999 13.6656 8.3999 13.4004V8.40039H13.3999C13.6651 8.40039 13.9195 8.29503 14.107 8.1075C14.2945 7.91996 14.3999 7.66561 14.3999 7.40039C14.3999 7.13517 14.2945 6.88082 14.107 6.69328C13.9195 6.50575 13.6651 6.40039 13.3999 6.40039H8.3999Z' fill='white'/></svg>");
  transition: transform 0.3s ease, background-image 0.3s ease;
  z-index: 1;
}
.accordion-toggle[aria-expanded=true] {
  border-radius: 20px 20px 0 0;
}
.accordion-toggle[aria-expanded=true]::before {
  background-color: var(--orange);
}
.accordion-toggle[aria-expanded=true]::after {
  transform: translateY(-50%) rotate(45deg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' fill='none'><path d='M8.3999 6.40039V1.40039C8.3999 1.13517 8.29455 0.88082 8.10701 0.693284C7.91947 0.505748 7.66512 0.400391 7.3999 0.400391C7.13469 0.400391 6.88033 0.505748 6.6928 0.693284C6.50526 0.88082 6.3999 1.13517 6.3999 1.40039V6.40039H1.3999C1.13469 6.40039 0.880332 6.50575 0.692796 6.69328C0.505259 6.88082 0.399902 7.13517 0.399902 7.40039C0.399902 7.66561 0.505259 7.91996 0.692796 8.1075C0.880332 8.29503 1.13469 8.40039 1.3999 8.40039H6.3999V13.4004C6.3999 13.6656 6.50526 13.92 6.6928 14.1075C6.88033 14.295 7.13469 14.4004 7.3999 14.4004C7.66512 14.4004 7.91947 14.295 8.10701 14.1075C8.29455 13.92 8.3999 13.6656 8.3999 13.4004V8.40039H13.3999C13.6651 8.40039 13.9195 8.29503 14.107 8.1075C14.2945 7.91996 14.3999 7.66561 14.3999 7.40039C14.3999 7.13517 14.2945 6.88082 14.107 6.69328C13.9195 6.50575 13.6651 6.40039 13.3999 6.40039H8.3999Z' fill='%2313385A'/></svg>");
}
.accordion-panel {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}
.accordion-answer {
  padding: 1rem 2rem;
}
