/* BASE RESET & TYPOGRAPHY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8fbfc;
  color: #222;
  line-height: 1.6;
}

/* HEADER */
header {
  background: linear-gradient(to right, #e0f7f7, #d2efff);
  padding: 2rem;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
  color: #333;
}

/* MAIN LAYOUT */
main {
  padding: 2rem 1rem;
}

/* CARDS / STEPS */
.card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

/* JOURNEY-SPECIFIC STYLING */
main.journey {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  border-left: 6px solid #00c6ff;
}

/* BUTTONS & LINKS */
button,
.external-link {
  display: inline-block;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

/* Primary Button */
button {
  background-color: #28a745;
  color: white;
}

button:hover {
  background-color: #218838;
}

/* External Link Button */
.external-link {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  margin-right: 1rem;
}

.external-link:hover {
  background: linear-gradient(to right, #0072ff, #00c6ff);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #eaf6f6;
  font-size: 0.9rem;
  margin-top: 3rem;
}