
.sds-faq {
  position: relative;
  padding: 58px 0 72px;
  background: #f5f8fc;
}

.sds-faq__container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.sds-faq__header {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.sds-faq__eyebrow {
  margin: 0 0 12px;
  color: var(--sds-blue);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sds-faq__title {
  margin: 0;
  color: var(--sds-heading);
  font-size: clamp(30px, 2.45vw, 42px);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.sds-faq__description {
  max-width: 700px;
  margin: 14px auto 0;
  color: #4b5763;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

.sds-faq__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.sds-faq__list {
  display: grid;
  gap: 12px;
}

.sds-faq__list--blue .sds-faq-item {
  border-color: rgba(33, 118, 189, 0.18);
}

.sds-faq__list--red .sds-faq-item {
  border-color: rgba(217, 13, 10, 0.16);
}

.sds-faq-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce6f0;
  border-radius: 16px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.sds-faq__list--blue .sds-faq-item[open] {
  border-color: rgba(33, 118, 189, 0.38);
}

.sds-faq__list--red .sds-faq-item[open] {
  border-color: rgba(217, 13, 10, 0.30);
}

.sds-faq-item__question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 14px 18px;
  color: var(--sds-heading);
  cursor: pointer;
  list-style: none;
}

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




.sds-faq-item__label {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
}

.sds-faq-item__toggle {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(33, 118, 189, 0.25);
  border-radius: 50%;
  background: #ffffff;
}

.sds-faq__list--red .sds-faq-item__toggle {
  border-color: rgba(217, 13, 10, 0.26);
}

.sds-faq-item__toggle::before,
.sds-faq-item__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--sds-blue);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.sds-faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sds-faq__list--red .sds-faq-item__toggle::before,
.sds-faq__list--red .sds-faq-item__toggle::after {
  background: var(--sds-red);
}

.sds-faq-item[open] .sds-faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.sds-faq-item__answer {
  padding: 0 56px 20px 18px;
}

.sds-faq-item__answer p {
  margin: 0;
  color: #4b5763;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

@media (hover: hover) {
  .sds-faq__list--blue .sds-faq-item__question:hover .sds-faq-item__label {
    color: var(--sds-blue);
  }

  .sds-faq__list--red .sds-faq-item__question:hover .sds-faq-item__label {
    color: var(--sds-red);
  }
}

@media (max-width: 991px) {
  .sds-faq__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .sds-faq {
    padding: 46px 0 54px;
  }

  .sds-faq__container {
    width: min(100% - 16px, 1080px);
  }

  .sds-faq__header {
    margin-bottom: 22px;
  }

  .sds-faq__eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .sds-faq__title {
    font-size: 27px;
    line-height: 1.2;
  }

  .sds-faq__description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .sds-faq__columns {
    gap: 8px;
  }

  .sds-faq__list {
    gap: 8px;
  }

  .sds-faq-item {
    border-radius: 13px;
  }

  .sds-faq-item__question {
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 7px;
    min-height: 76px;
    padding: 11px 9px;
  }

  .sds-faq-item__label {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
  }

  .sds-faq-item__toggle {
    width: 18px;
    height: 18px;
  }

  .sds-faq-item__toggle::before,
  .sds-faq-item__toggle::after {
    width: 8px;
    height: 1.5px;
  }

  .sds-faq-item__answer {
    padding: 0 9px 13px;
  }

  .sds-faq-item__answer p {
    font-size: 11px;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .sds-faq__container {
    width: min(100% - 12px, 1080px);
  }

  .sds-faq__columns {
    gap: 6px;
  }

  .sds-faq-item__question {
    min-height: 82px;
    padding-inline: 8px;
  }

  .sds-faq-item__label {
    font-size: 11.5px;
  }
}
