.skiper-faq-shell {
  max-width: 920px;
  margin: 0 auto;
}

.skiper-faq-heading {
  text-align: center;
  margin-bottom: 50px;
}

.skiper-faq-label {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #2E7D74;
  margin-bottom: 16px;
}

.skiper-faq-title {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #0F172B;
}

.skiper-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.skiper-faq-item {
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(211,232,226,.95);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 46px -38px rgba(15,23,43,.5);
  transform-origin: center;
  transition:
    background .24s var(--ease, ease),
    border-color .24s var(--ease, ease),
    box-shadow .24s var(--ease, ease),
    transform .24s cubic-bezier(.22,1.24,.36,1);
}

.skiper-faq-item.is-open {
  background: rgba(255,255,255,.94);
  border-color: rgba(111,174,181,.5);
  box-shadow: 0 26px 54px -42px rgba(5,89,99,.78);
  animation: skiper-faq-bounce .36s cubic-bezier(.22,1.34,.36,1);
}

.skiper-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.skiper-faq-trigger:focus-visible {
  outline: 3px solid rgba(111,174,181,.45);
  outline-offset: 4px;
}

.skiper-faq-question {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: #0F172B;
}

.skiper-faq-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #055963;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(228,244,236,.58));
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 12px 26px -20px rgba(5,89,99,.8);
  transition:
    transform .34s cubic-bezier(.22,1.34,.36,1),
    background .24s var(--ease, ease),
    color .24s var(--ease, ease);
}

.skiper-faq-icon svg {
  transition: transform .34s cubic-bezier(.22,1.34,.36,1);
}

.skiper-faq-item.is-open .skiper-faq-icon {
  color: #fff;
  background: linear-gradient(145deg, #2E7D74, #055963);
  transform: scale(1.08);
}

.skiper-faq-item.is-open .skiper-faq-icon svg {
  transform: rotate(180deg);
}

.skiper-faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height .46s cubic-bezier(.22,1.16,.36,1),
    opacity .22s var(--ease, ease),
    transform .32s cubic-bezier(.22,1.16,.36,1);
}

.skiper-faq-item.is-open .skiper-faq-panel {
  opacity: 1;
  transform: translateY(0);
}

.skiper-faq-answer {
  padding: 0 32px 30px;
}

.skiper-faq-answer p {
  margin: 0;
  font-size: 18px;
  line-height: 1.62;
  color: #52606D;
}

.skiper-faq-answer a {
  color: #055963;
  font-weight: 800;
}

@keyframes skiper-faq-bounce {
  0% { transform: scale(.985); }
  54% { transform: scale(1.012); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .skiper-faq-item,
  .skiper-faq-icon,
  .skiper-faq-icon svg,
  .skiper-faq-panel {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 620px) {
  .skiper-faq-heading {
    text-align: left;
    margin-bottom: 34px;
  }

  .skiper-faq-title {
    font-size: clamp(30px,8vw,40px);
  }

  .skiper-faq-trigger {
    padding: 24px 22px;
  }

  .skiper-faq-question {
    font-size: 19px;
  }

  .skiper-faq-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .skiper-faq-answer {
    padding: 0 22px 26px;
  }
}
