/* static/css/about.css - ABOUT PAGE SPECIFIC STYLES */
.about-hero-bg {
  background-image: url('/static/img/about-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.timeline-line {
  background: linear-gradient(to bottom, #1e3a8a, #b8860b);
}

/* About page specific responsive adjustments */
@media (max-width: 640px) {
  .about-hero-bg {
    background-position: 60% center;
  }
}