:root {
  --primary: #1a3e72;
  --secondary: #4a8fe7;
  --accent: #ff7d00;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
}

* {
  box-sizing: border-box;
}

/**
 * Client Journey Page Styles
 * Enhanced styling for the client journey timeline
 */

/* Main Layout */
.client-journey-page {
  padding: 60px 0;
  background-color: transparent;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page Header */
.client-journey-page header {
  position: relative;
  height: auto;
  margin-bottom: 60px;
  text-align: center;
}

.client-journey-page h1 {
  color: #404a9a;
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.client-journey-page .subtitle {
  color: #333;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.client-journey-page .intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Journey Container */
.journey-container {
  position: relative;
  padding: 40px 0;
}

.journey-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #404a9a;
  transform: translateX(-50%);
}

/* Journey Steps */
.journey-steps {
  position: relative;
}

.step {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #404a9a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  z-index: 1;
  flex-shrink: 0;
  margin-right: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-content {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  flex-grow: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
  display: flex;
  align-items: center;
  color: #404a9a;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-content h3 svg {
  width: 50px !important;
  height: 50px !important;
  margin-right: 15px;
  color: #404a9a;
}

.step-text {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .journey-line {
    left: 25px;
  }
  
  .step {
    flex-direction: column;
    padding-left: 50px;
  }
  
  .step-number {
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 0;
  }
  
  .step-content {
    width: 100%;
    margin-top: 15px;
  }
  
  .client-journey-page h1 {
    font-size: 1.8rem;
  }
  
  .client-journey-page .subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .client-journey-page {
    padding: 40px 0;
  }
  
  .step-content {
    padding: 20px;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
  }
  
  .step-text {
    font-size: 1rem;
  }
}
