/* Give the Process page its own width + padding */
.journey-page {
  max-width: 1000px; /* matches What We Do */
  width: 100%;
  margin: 0 auto; /* center block */
  padding: 2.5rem 1.5rem; /* same top/bottom + side gutters */
  font-size: 18px;
  line-height: 1.7;
}

/* Headings inside The Process */
.journey-page h1 {
  margin-top: 0; /* no extra space above first heading */
  margin-bottom: 0.75rem;
}
.journey-page h2 {
  margin-top: 3rem; /* more breathing room above */
  margin-bottom: 1rem; /* slightly more before text */
}

.journey-page h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Lists and any callouts */
.journey-page ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

.journey-page .tech-note {
  opacity: 0.85;
  font-size: 0.95rem;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}
.journey-page .tech-note a {
  color: var(--brand-orange);
  font-weight: 600;
  text-decoration: none;
}
.journey-page .tech-note a:hover {
  text-decoration: underline;
}

.process-list {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #ffffff;
}

/* ---- Our Approach cards ---- */
.journey-page .section-intro {
  max-width: 900px;
  margin: 1rem 0 2rem;
  font-size: 1.05rem;
}

.step-grid {
  display: flex;
  flex-direction: column; /* stack all four steps */
  gap: 1.5rem; /* space between cards */
  margin: 2.5rem 0 3rem;
  max-width: 720px; /* keeps the column readable */
}

.step-card {
  background: #13263f;
  padding: 1.4rem 1.6rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.step-grid .step-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #65e0ff;
}

.step-card .step-number {
  color: #4fd1c5;
  font-weight: 700;
  margin-right: 0.35rem;
}

.step-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.journey-page .section-outro {
  margin-top: 1.5rem;
  max-width: 900px;
  font-weight: 500;
}

/* === BRAND CTA BUTTON (CORRECT ORANGE) === */
.cta-orange,
a.cta-orange,
.btn.cta-orange {
  background-color: #fb5924; /* YOUR brand */
  color: #fff !important;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

/* Hover state: same orange, slightly darker based on #FB5924 */
.cta-orange:hover,
a.cta-orange:hover,
.btn.cta-orange:hover {
  background-color: #e45020; /* Darkened from YOUR brand */
  transform: translateY(-2px);
}

/* Click/pressed state: slightly darker again */
.cta-orange:active,
a.cta-orange:active,
.btn.cta-orange:active {
  background-color: #c34119;
  transform: translateY(0);
}

.journey-page p + .cta-orange {
  margin-top: 1.25rem;
}
