.brand {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  opacity: 0.7;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #fecf10, transparent);
  opacity: 0.3;
}

.step-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
  position: relative;
}

.step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content {
  width: 45%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid #fecf10;
  transition: all 0.3s ease;
}

.step-content:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.step-content h2 {
  color: #fecf10;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 900;
}

.step-content p {
  color: #ffffff;
  font-size: 16px;
}

.step-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #fecf10;
  color: #004d4d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 0 20px rgba(212, 255, 0, 0.3);
  z-index: 10;
}

.step-spacer {
  width: 45%;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 25px;
  }

  .step-item,
  .step-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }

  .step-dot {
    left: 25px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .step-content,
  .step-spacer {
    width: 100%;
    padding-left: 60px;
  }

  .step-spacer {
    display: none;
  }

  .step-content {
    background: none;
    border: none;
    padding: 0 0 0 70px;
  }
}
