.ivi-faq-module {
  --ivi-bg: #f7f9fc;
  --ivi-heading: #183b67;
  --ivi-text: #4b6480;
  --ivi-border: #dde7f0;
  --ivi-card-bg: #ffffff;
  --ivi-shadow: 0 10px 24px rgba(24, 59, 103, 0.05);
  --ivi-accent: #2d5f93;
  background: var(--ivi-bg);
}

.ivi-faq-module.theme-soft-blue {
  --ivi-bg: #f3f8fd;
}

.ivi-faq-module.theme-cream {
  --ivi-bg: #faf8f2;
}

.ivi-width--narrow {
  max-width: 980px;
  margin: 0 auto;
}

.ivi-width--normal {
  max-width: 1200px;
  margin: 0 auto;
}

.ivi-width--wide {
  max-width: 1320px;
  margin: 0 auto;
}

.ivi-padding-sm {
  padding: 28px 20px;
}

.ivi-padding-md {
  padding: 40px 20px;
}

.ivi-padding-lg {
  padding: 56px 20px;
}

.ivi-align--left {
  text-align: left;
}

.ivi-align--center {
  text-align: center;
}

.ivi-align--right {
  text-align: right;
}

.ivi-section-header {
  margin-bottom: 22px;
}

.ivi-section-header__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8f1fb;
  color: #2d5f93;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ivi-section-header__title {
  margin: 0 0 10px;
  color: var(--ivi-heading);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.ivi-section-header__intro {
  max-width: 760px;
  color: var(--ivi-text);
  font-size: 0.98rem;
  line-height: 1.7;
}

.ivi-align--center .ivi-section-header__intro {
  margin-left: auto;
  margin-right: auto;
}

.ivi-align--right .ivi-section-header__intro {
  margin-left: auto;
}

.ivi-section-header__intro > *:first-child,
.ivi-section-header__intro > *:last-child,
.ivi-faq-item__answer > *:first-child,
.ivi-faq-item__answer > *:last-child {
  margin-top: 0;
  margin-bottom: 0;
}

.ivi-faq-list {
  display: grid;
  gap: 14px;
}

.ivi-faq-item {
  border: 1px solid var(--ivi-border);
  border-radius: 18px;
  background: var(--ivi-card-bg);
  box-shadow: var(--ivi-shadow);
  overflow: hidden;
}

.ivi-faq-item__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--ivi-heading);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.35;
}

.ivi-faq-item__question::-webkit-details-marker {
  display: none;
}

.ivi-faq-item__toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.ivi-faq-item__toggle::before,
.ivi-faq-item__toggle::after {
  content: "";
  position: absolute;
  background: var(--ivi-accent);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ivi-faq-item__toggle::before {
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
}

.ivi-faq-item__toggle::after {
  top: 2px;
  left: 8px;
  width: 2px;
  height: 14px;
}

.ivi-faq-item[open] .ivi-faq-item__toggle::after {
  opacity: 0;
  transform: scaleY(0.5);
}

.ivi-faq-item__answer {
  padding: 0 20px 18px;
  color: var(--ivi-text);
  line-height: 1.72;
}

@media (max-width: 767px) {
  .ivi-padding-sm,
  .ivi-padding-md,
  .ivi-padding-lg {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ivi-padding-sm {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .ivi-padding-md {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .ivi-padding-lg {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ivi-faq-item__question,
  .ivi-faq-item__answer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ivi-faq-item__answer {
    padding-bottom: 16px;
  }
}and 