.procedure {
  background: #ffffff;
  color: #111;
  padding: 100px 50px;
  font-family: 'Merriweather', serif;
}

.procedure-container {
  max-width: 1200px;
  margin: 0 auto;
}

.procedure h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 30px;
  color: #111;
  font-weight: bold;
  text-transform: uppercase;
}

.procedure-intro {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.procedure-intro h3 {
  font-size: 28px;
  color: #e6b800;
  margin-bottom: 20px;
  font-weight: bold;
}

.procedure-intro p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  position: relative;
  margin: 60px 0;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  height: 100%;
  width: 4px;
  background: #e6b800;
  transition: all 0.3s ease;
}

.timeline:hover::before {
  background: linear-gradient(to bottom, #e6b800, #c49a00);
  width: 5px;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  transition: transform 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.timeline-item:hover {
  transform: translateX(10px);
}

.timeline-marker {
  position: absolute;
  left: -45px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e6b800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(230, 184, 0, 0.3);
}

.timeline-item:hover .timeline-marker {
  background: #c49a00;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(230, 184, 0, 0.4);
}

.timeline-content {
  margin-left: 80px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.timeline-item:hover .timeline-content {
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  border-left: 4px solid #e6b800;
}

.timeline-title {
  font-size: 22px;
  font-weight: bold;
  color: #e6b800;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-title {
  color: #c49a00;
  transform: translateX(5px);
}

.timeline-desc p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-desc p {
  color: #333;
}

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

.btn-large {
  display: inline-block;
  padding: 15px 40px;
  background: #e6b800;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  border-radius: 5px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: all 0.5s ease;
}

.btn-large:hover {
  background: #c49a00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 184, 0, 0.4);
}

.btn-large:hover::before {
  left: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 768px) {
  .procedure {
    padding: 60px 20px;
  }
  
  .procedure h2 {
    font-size: 32px;
  }
  
  .procedure-intro h3 {
    font-size: 24px;
  }
  
  .procedure-intro p {
    font-size: 16px;
  }
  
  .timeline {
    padding-left: 0;
  }
  
  .timeline::before {
    left: 15px;
  }
  
  .timeline-marker {
    left: -15px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .timeline-content {
    margin-left: 50px;
    padding: 15px;
  }
  
  .timeline-title {
    font-size: 18px;
  }
  
  .timeline-desc p {
    font-size: 14px;
  }
  
  .btn-large {
    padding: 12px 30px;
    font-size: 16px;
  }
  
  .timeline-item:hover {
    transform: translateX(5px);
  }
}
