body {
  background-color: #0d0d0d;
  color: #FFD700;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 30px 15px;
}

.about-container {
  max-width: 900px;
  margin: auto;
  background: rgba(20, 20, 20, 0.95);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

h1, h2 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

h1 i, h2 i {
  margin-right: 10px;
}

.intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #f9f9f9;
}

.scams-section, .recovery-section {
  margin-bottom: 40px;
}

.scam-list {
  list-style: none;
  padding-left: 0;
}

.scam-list li {
  margin: 12px 0;
  background-color: #111;
  padding: 12px 15px;
  border-left: 4px solid #FFD700;
  border-radius: 8px;
  color: #f1f1f1;
}

.recovery-section ul {
  margin-top: 15px;
  list-style-type: disc;
  padding-left: 20px;
  color: #f9f9f9;
}

.cta {
  text-align: center;
  margin-top: 30px;
}

.cta-btn {
  background-color: #FFD700;
  color: #111;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cta-btn i {
  margin-right: 8px;
}

.cta-btn:hover {
  background-color: #e6c200;
}

@media (max-width: 600px) {
  .about-container {
    padding: 20px;
  }

  .cta-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}

.case-study {
  margin-top: 50px;
}

.case-study h2 {
  text-align: center;
  color: #FFD700;
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding: 10px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #FFD700;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 20px 30px;
  position: relative;
  width: 50%;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: #FFD700;
  border: 4px solid #fff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.right::after {
  left: -13px;
}

.timeline-content {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  color: #fff;
  border-left: 4px solid #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.timeline-content h3 {
  color: #FFD700;
  margin-top: 0;
}

.timeline-content span {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #ccc;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 25px;
  }

  .timeline-item.right {
    left: 0%;
  }

  .timeline-item::after {
    left: 8px;
  }
}