.damage-timeline {
  padding: 100px 20px;
  background: #fff;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff6a00;
  margin-bottom: 15px;
}

.damage-timeline h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 20px;
}

.damage-timeline h2 span {
  color: #ff6a00;
}

.section-text {
  max-width: 700px;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 50px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.timeline-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.timeline-card:hover {
  transform: translateY(-5px);
}

.timeline-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff6a00;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.timeline-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.timeline-card p {
  color: #666;
  line-height: 1.6;
}

.timeline-card.danger {
  border: 2px solid #ff6a00;
}

.timeline-card.danger h3 {
  color: #ff6a00;
}

@media (max-width: 900px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .damage-timeline {
    padding: 70px 20px;
  }

  .timeline-card {
    padding: 25px;
  }

  .section-text {
    font-size: 1rem;
  }
}