/* Additional Section Styles - Added 2025-05-19 */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: #4B5563;
  line-height: 1.6;
}

.cta-container {
  text-align: center;
  margin-top: 60px;
}

/* Step Connectors - Added 2025-05-19 */
.step-connectors {
  position: absolute;
  left: 30px;
  top: 60px;
  height: calc(100% - 60px);
  z-index: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.flow-connector {
  opacity: 0.5;
  transform: translateX(-50%);
}

/* Enhanced Mobile Process Steps - Added 2025-05-19 */
@media (max-width: 768px) {
  .process-steps {
    margin: 40px auto;
    padding: 10px;
  }
  
  /* Hide connectors on mobile */
  .step-connectors {
    display: none;
  }
  
  .process-step {
    flex-direction: column;
    align-items: center;
    margin: 0 auto 30px;
    padding: 20px;
    max-width: 90%;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 15px 0;
  }
  
  .step-content {
    text-align: center;
    padding: 0;
    min-height: auto;
    box-shadow: none;
    background: transparent;
  }
  
  .step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .step-content p, 
  .step-content li {
    font-size: 0.95rem;
  }
  
  .step-content ul {
    padding-left: 20px;
    display: inline-block;
    text-align: left;
  }
  
  /* Hide connecting elements on mobile */
  .process-steps::before,
  .process-steps::after,
  .process-step::before,
  .process-step::after {
    display: none;
  }
  
  /* Improved footer button display on mobile */
  .footer .btn-primary {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 1rem auto;
  }
  
  /* Fix copyright alignment */
  .footer p {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
  }
}
