.info-page-wrap {
  width: min(920px, 100%);
  margin: 0 auto var(--section-margin);
}

.info-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  margin: 0 auto 28px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.info-toc a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: var(--font-medium-weight);
  color: var(--primary-color);
  background: rgba(102, 175, 18, 0.08);
  border: 1px solid rgba(102, 175, 18, 0.2);
  transition: var(--smouth-transition);
}

.info-toc a:hover,
.info-toc a:focus-visible {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.info-section {
  scroll-margin-top: 110px;
  margin-bottom: 28px;
  background: #fff;
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.info-section-title {
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(102, 175, 18, 0.25);
  font-size: 1.35rem;
  font-weight: var(--font-bold-weight);
  color: #1a1a1a;
  text-align: left;
}

.info-subtitle {
  margin: 24px 0 10px;
  font-size: 1.05rem;
  font-weight: var(--font-bold-weight);
  color: #2d2d2d;
}

.info-subtitle:first-of-type {
  margin-top: 0;
}

.info-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.75;
  color: #3a3a3a;
}

.info-text:last-child {
  margin-bottom: 0;
}

.info-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.info-list > li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a;
}

.info-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 175, 18, 0.15);
}

.info-list--ordered {
  counter-reset: info-counter;
}

.info-list--ordered > li {
  counter-increment: info-counter;
  padding-left: 28px;
}

.info-list--ordered > li::before {
  content: counter(info-counter);
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--primary-color);
  color: #fff;
  font-size: 11px;
  font-weight: var(--font-bold-weight);
  line-height: 20px;
  text-align: center;
  box-shadow: none;
}

.info-note {
  margin: 16px 0;
  padding: 14px 16px 14px 18px;
  border-left: 4px solid var(--primary-color);
  border-radius: 0 10px 10px 0;
  background: rgba(102, 175, 18, 0.07);
  font-size: 13.5px;
  line-height: 1.65;
  color: #2f3a24;
}

.info-note strong {
  display: block;
  margin-bottom: 4px;
  color: #1f2914;
}

.info-list--in-note {
  margin: 8px 0 0;
}

.info-list--in-note > li {
  margin-bottom: 4px;
}

.info-list--in-note > li strong {
  display: inline;
  margin-bottom: 0;
}

.info-note a {
  color: #2f5a12;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.info-note a:hover {
  color: var(--primary-color);
}

.info-note .info-text {
  margin: 0;
}

.info-payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 12px 0 16px;
}

.info-payment-card {
  padding: 14px 16px;
  border: 1px solid #e8ece4;
  border-radius: 12px;
  background: #fafcf8;
}

.info-payment-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #1a1a1a;
}

.info-payment-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

.info-page-wrap .pdf-download {
  margin: 12px 0 16px;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .info-section {
    padding: 22px 18px;
  }

  .info-section-title {
    font-size: 1.15rem;
  }

  .info-toc {
    padding: 12px 14px;
  }

  .info-toc a {
    font-size: 12px;
    padding: 6px 12px;
  }
}
