.about-dss {
  text-align: center;
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

/* Base animation */
.animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

/* Delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlight text */
.highlight-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}
