 

.ofbs {
  --of-blue: #092f93;
  --of-green: #29aa4a;
  padding: 52px 20px 64px;
  color: #17265a;
  background: #f7f9fd;
  font-family: Rubik, Arial, sans-serif;
}

.ofbs * {
  box-sizing: border-box;
}

.ofbs .ofin {
  margin: 0 auto;
}

.ofbs .ofhd {
  margin: 0 auto 30px;
  text-align: center;
}

.ofbs .ofhd p {
  margin: 0 0 8px;
  color: var(--of-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.ofbs .ofhd h2 {
  margin: 0;
  color: var(--of-blue);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
}

.ofbs .ofls {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid #d5deef;
}

.ofbs .ofit {
  border-bottom: 1px solid #d5deef;
  background: #fff;
}

.ofbs .ofh3 {
  margin: 0;
}

.ofbs .ofbt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 78px;
  padding: 19px 24px;
  border: 0;
  color: #0b246f;
  background: transparent;
  cursor: pointer;
  font: 700 19px/1.35 Rubik, Arial, sans-serif;
  text-align: left;
  transition: color .2s ease, background .2s ease;
}

.ofbs .ofbt:hover,
.ofbs .ofbt:focus-visible,
.ofbs .is-open .ofbt {
  color: var(--of-blue);
  background: #f2f6ff;
}

.ofbs .ofbt:focus-visible {
  outline: 3px solid rgba(41, 170, 74, .35);
  outline-offset: -3px;
}

.ofbs .ofbt i {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid #b8c8e8;
  border-radius: 50%;
  background: #fff;
}

.ofbs .ofbt i::before,
.ofbs .ofbt i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--of-blue);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.ofbs .ofbt i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ofbs .is-open .ofbt i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.ofbs .ofpn {
  overflow: hidden;
  transition: max-height .32s ease;
}

.ofbs .ofpn[hidden] {
  display: none;
}

.ofbs .ofct {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  padding: 14px 24px 28px;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}

.ofbs .ofct.has-image {
  grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
}

.ofbs .ofct img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #d7e0ef;
  border-radius: 12px;
}

.ofbs .oftx > :first-child {
  margin-top: 0;
}

.ofbs .oftx > :last-child {
  margin-bottom: 0;
}

.ofbs .oftx a {
  color: var(--of-blue);
  font-weight: 700;
  text-underline-offset: 3px;
}

.ofbs .oftx ul,
.ofbs .oftx ol {
  padding-left: 24px;
}

@media (max-width: 760px) {
  .ofbs {
    padding: 40px 15px 48px;
  }

  .ofbs .ofhd {
    margin-bottom: 24px;
  }

  .ofbs .ofbt {
    min-height: 68px;
    padding: 16px;
    font-size: 17px;
  }

  .ofbs .ofct,
  .ofbs .ofct.has-image {
    grid-template-columns: 1fr;
    padding: 0 16px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ofbs .ofpn,
  .ofbs .ofbt,
  .ofbs .ofbt i::after {
    transition: none;
  }
}
