* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.c-page-inner {
  max-width: 920px;
  margin: auto;
}

.c-header {
  background: var(--brand-1-60);
  color: var(--white);
  padding: 48px;
  text-align: center;

  & .section-description {
    text-align: center;
  }
}

.c-hero-title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.c-hero-subtitle {
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto;
}

.c-article {
  padding: 32px;
}

.c-section+.c-section {
  margin-top: 36px;
}

/* Headings */
.c-h2 {
  font-size: 32px;
  color: var(--brand-1);
  margin-bottom: 12px;
}

.c-h3 {
  font-size: 18px;
  color: var(--color-text);
  margin-top: 16px;
  margin-bottom: 4px;
  font-weight: 500;
}

/* Paragraph text */
.c-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 12px;
}

/* Bullet lists */
.c-list {
  padding-left: 1.2rem;
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.c-list li {
  margin-bottom: 6px;
}

.c-list-label {
  font-weight: 600;
}

/* Highlight / note box */
.c-highlight {
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--brand-2-08);
  border-left: 4px solid var(--brand-2);
  font-size: 16px;
}

/* Bottom CTA band */
.c-cta-band {
  background: var(--brand-1-60);
  color: var(--white);
  padding: 48px;
  text-align: center;
}

.c-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.c-cta-title {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 400;
}

.c-cta-text {
  font-size: 16px;
  margin-bottom: 24px;
}

/* CTA button */
.c-cta-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  background: var(--white);
  color: var(--brand-1);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;

  &:hover {
    text-decoration: none;
    background: #f5f5f5;
  }
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .c-page-inner {}

  .c-hero {
    padding: 20px 16px 24px;
  }

  .c-hero-title {
    font-size: 24px;
  }

  .c-article {
    padding: 24px 16px 28px;
  }

  .c-h2 {
    font-size: 24px;
  }

  .c-h3 {
    font-size: 16px;
  }

  .c-body {
    font-size: 14px;
    line-height: 1.7;
  }

  .c-cta-band {
    padding: 24px 16px;
  }

  /* CTA button */
  .c-cta-btn {
    padding: 6px 12px;
    font-size: 12px;
    letter-spacing: 0.04em;

    &:hover {
      text-decoration: none;
      background: #f5f5f5;
    }
  }


}