
/*--------------------------------------------------------------
# Approach Section
--------------------------------------------------------------*/
.approach .section-title h2 .highlight {
  color: var(--accent-color);
}

.approach-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.approach-step {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  transition: 0.3s;
}

.approach-step:hover {
  transform: translateY(-5px);
}

.approach-step .approach-step-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.approach-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.approach-step p {
  font-size: 14px;
  line-height: 22px;
  color: var(--text-color);
  margin: 0;
}

.approach-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 24px;
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .approach-arrow {
    display: none;
  }
}
