
/* Process Step */
.process-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step .step-content {
  flex: 1;
  padding: 20px;
}

.process-step .step-content h3 {
  font-size: 1.8rem;
  color: var(--art-color-trust);
  margin-bottom: 20px;
}

.process-step .step-content p {
  font-size: 1rem;
  line-height: 1.5;
}

.process-step .step-content a {
  color: var(--art-color-innovation);
  text-decoration: none;
  border-bottom: 1px dashed var(--art-color-innovation);
}

.process-step .step-content a:hover {
  color: var(--art-color-foundations);
  border-bottom-color: var(--art-color-foundations);
}

.process-step .step-visual {
  flex: 1;
  text-align: center;
}

.process-step .step-visual img {
  max-width: 80%;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Scroll Animation */
.process-step.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-step {
    flex-direction: column;
  }
  .process-step:nth-child(even) {
    flex-direction: column;
  }
  .process-step .step-visual img {
    max-width: 100%;
  }
}
