.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.process-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.process-overview {
    padding: 4rem 0 2rem;
    background: #f8f9fa;
    text-align: center;
}

.process-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.process-steps {
    padding: 4rem 0 6rem;
    background: #f8f9fa;
}
/* Phase Cards Container */
.phases-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 2rem;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Individual Phase Card */
.phase-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  flex: 1 1 0;
  min-width: 0;
  max-width: 1100px;
  transition: box-shadow 0.2s;
  border-top: 6px solid #6c63ff; /* Default accent, override below */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.phase-card.phase-1 { border-top-color: #6c63ff; }
.phase-card.phase-2 { border-top-color: #ffb347; }
.phase-card.phase-3 { border-top-color: #00bfae; }

.phase-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}

.phase-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Steps inside phase */
.steps-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  justify-content: flex-start;
  align-items: stretch;
}

/* Step Card */
.step-card {
  background: #f7f8fa;
  border-radius: 1rem;
  padding: 1.2rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6c63ff;
  margin-bottom: 0.5rem;
}

.phase-card.phase-2 .step-number { background-color: #ffb347; }
.phase-card.phase-3 .step-number { background-color: #00bfae; }

.step-icon {
  font-size: 2rem;
  color: #6c63ff;
  margin-bottom: 0.5rem;
}

.phase-card.phase-2 .step-icon { color: #ffb347; }
.phase-card.phase-3 .step-icon { color: #00bfae; }

.step-features {
  margin: 0.5rem 0 0 0;
  padding-left: 1.2rem;
  color: #444;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .phases-container {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
  }
  .phase-card {
    max-width: 100%;
    min-width: 0;
  }
}

.step-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-icon {
    font-size: 3rem;
    color: #667eea;
    margin: 2rem 0 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.step-features {
    list-style: none;
    text-align: left;
}

.step-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.step-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.timeline-section {
    padding: 6rem 0;
    background: white;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    /* Gradient matches marker colors for each phase */
    background: linear-gradient(
        to bottom,
        #6c63ff 0%,      /* Phase I */
        #6c63ff 20%,
        #ffb347 20%,     /* Phase II */
        #ffb347 45%,
        #00bfae 45%,     /* Phase III */
        #00bfae 100%
    );
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 2rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 2rem;
    text-align: left;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #6c63ff; /* Default: Phase I */
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
/* Timeline phase colors */
.timeline-item:nth-child(1) .timeline-marker {
    background: #6c63ff; /* Phase I */
}
.timeline-item:nth-child(2) .timeline-marker{
    background: #ffb347; /* Phase II */
}

.timeline-item:nth-child(3) .timeline-marker,
.timeline-item:nth-child(4) .timeline-marker,
.timeline-item:nth-child(5) .timeline-marker {
    background: #00bfae; /* Phase III */
}
.timeline-item:nth-child(1) .timeline-content h4 {
    color: #6c63ff;
}
.timeline-item:nth-child(2) .timeline-content h4{
    color: #ffb347;
}

.timeline-item:nth-child(3) .timeline-content h4,
.timeline-item:nth-child(4) .timeline-content h4,
.timeline-item:nth-child(5) .timeline-content h4 {
    color: #00bfae;
}

.timeline-content {
    flex: 1;
    padding: 1rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .step-card {
        padding: 2rem;
    }
    /* ...existing timeline responsive code... */
}

@media (max-width: 576px) {
    .step-card {
        padding: 1.5rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .step-card h3 {
        font-size: 1.25rem;
    }
}
