a {
    color: #265ba2;
}
.content-page {
  padding: 40px 16px;
}

.content-container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.content-intro {
  margin-bottom: 48px;
}

.intro-text {
  max-width: 720px;
  font-size: 16px;
  color: #333;
}

.content-container h2 {
  margin-bottom: 20px;
}

.content-container h3 {
  margin-top: 24px;
}

.two-columns {
  columns: 2;
  column-gap: 40px;
}

.two-columns li {
  break-inside: avoid;
}

.content-footer {
  margin-top: 56px;
}

.content-footer .btn {
  margin-top: 16px;
}

.steps {
  position: relative;
  margin-top: 32px;
  padding-left: 32px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--color-border);
}

.step {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  margin: 0 0 6px;
}

.step-content p {
  margin: 0;
}

.faq {
  margin-top: 24px;
}

.faq-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 28px;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.faq-question {
  margin: 0 0 6px;
}

.faq-answer {
  margin: 0;
  color: #444;
}

@media (max-width: 768px) {
  .intro-text {
    max-width: 100%;
  }

  .two-columns {
    columns: 1;
  }
  .steps {
    padding-left: 28px;
  }

  .step {
    gap: 16px;
  }
}