body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

*, h1, p {
    padding: 0;
    margin: 0;
}



/* HERO */
.report-hero {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 16px;
  text-align: center;
}

.report-hero h1 {
  font-size: 36px;
  color: #00ADEF;
  margin-bottom: 12px;
}

.report-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* TIMELINE */
.timeline-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 16px;
}

.timeline {
  position: relative;
  border-left: 3px solid #00ADEF;
  padding-left: 40px;
}

.timeline-item {
  margin-bottom: 60px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -63px;
  top: 0;
  background: #99CA3B;
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.timeline-content {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.timeline-content h3 {
  color: #00ADEF;
  margin-bottom: 10px;
  font-size: 22px;
}

.timeline-content p {
  line-height: 1.7;
  font-size: 16px;
}

.timeline-note {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .timeline {
    padding-left: 20px;
  }

  .timeline-dot {
    left: -48px;
    font-size: 12px;
  }
}

/* Archive dropdown button */
.archive-toggle {
  margin-top: 12px;
  background: none;
  border: none;
  color: #00ADEF;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

.archive-toggle:hover {
  text-decoration: underline;
}

/* Hidden by default */
.archive-gallery {
  display: none;
  margin-top: 16px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

/* When active */
.archive-gallery.open {
  display: grid;
}

/* Images */
.archive-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.archive-gallery img:hover {
  transform: scale(1.05);
}

