/* CONTENT PAGE STYLES */
.content-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.content-wrap h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.content-updated {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 32px;
}

.content-wrap h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 12px;
}

.content-wrap p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.content-wrap ul {
  margin: 0 0 14px 20px;
}

.content-wrap li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 6px;
}

.content-highlight {
  background: var(--bg);
  border-left: 3px solid var(--green);
  padding: 14px 18px;
  border-radius: var(--radius);
  margin: 20px 0;
}

.content-highlight p {
  margin-bottom: 0;
  font-size: 13px;
}

/* HOW IT WORKS PAGE */
.hiw-hero {
  text-align: center;
  padding: 48px 24px 20px;
}

.hiw-hero h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.hiw-hero p {
  font-size: 15px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto;
}

.hiw-sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.hiw-side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.hiw-side-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
}

.hiw-step {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

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

.hiw-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-step-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.hiw-step-text p {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 0;
  line-height: 1.6;
}

.hiw-cta {
  text-align: center;
  margin-top: 12px;
}

.hiw-cta .btn-list {
  display: inline-block;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .hiw-sides { grid-template-columns: 1fr; }
}
