section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  /* color: #f10909; */
}

.about p {
  font-size: 18px;
  color: #cccccc;
  max-width: 900px;
}

.values-list {
  list-style: none;
  margin-top: 20px;
  padding-left: 0;
}

.values-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  color: #919090;
  font-size: 17px;
}

.values-list li::before {
  content: '•';
  color: #e2900c;
  position: absolute;
  left: 0;
  top: 0;
}

/* Timeline */
.timeline-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 34px;
}

.timeline-pro {
  position: relative;
  max-width: 1100px;
  margin: auto;
  padding: 30px 0;
}

.timeline-pro::before {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, #e2900c, transparent);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-pro-item {
  padding: 30px 40px;
  position: relative;
  width: 50%;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease-out;
}

.timeline-pro-item.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-pro-item.left {
  left: 0;
}

.timeline-pro-item.right {
  left: 50%;
}

.timeline-pro-content {
  background-color: #181818;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border-left: 5px solid #e2900c;
}

.timeline-pro-content h3 {
  margin-top: 5px;
  font-size: 22px;
  color: #ffffff;
}

.timeline-pro-content p {
  margin-top: 10px;
  color: #cccccc;
}

.timeline-pro-content .date {
  font-size: 14px;
  color: #e2900c;
  font-weight: bold;
  display: block;
}

.timeline-pro-content .dot {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #e2900c;
  border: 4px solid #0e0e0e;
  border-radius: 50%;
  top: 20px;
  left: -41px;
  z-index: 1;
}

.timeline-pro-item.right .timeline-pro-content {
  border-left: none;
  border-right: 5px solid #e2900c;
}

.timeline-pro-item.right .timeline-pro-content .dot {
  left: auto;
  right: -41px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .timeline-pro::before {
    left: 20px;
  }
  
  .timeline-pro-item,
  .timeline-pro-item.left,
  .timeline-pro-item.right {
    left: 0;
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }
  
  .timeline-pro-item.right .timeline-pro-content,
  .timeline-pro-item.left .timeline-pro-content {
    border-right: none;
    border-left: 5px solid #e2900c;
  }
  
  .timeline-pro-content .dot {
    left: -34px;
    right: auto;
  }
}






footer p {
  color: #666;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 36px;
  }
  
  section h2 {
    font-size: 24px;
  }
  
  .about p,
  .values-list li,
  .cta p {
    font-size: 16px;
  }
}