/* Global responsive styles */

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
      padding: 1rem 1.5rem;
    }
  
    /* nav-links now handled in nav.css for mobile menu */
  
    .hero-stats {
      gap: 2rem;
    }
  
    .hero-image {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0 auto;
      opacity: 0.25;
      z-index: 0;
      display: flex;
      justify-content: center;
      animation: none;
    }
  
    .hero-image img {
      max-height: 60vh;
    }
  
    .stat-number {
      font-size: 3rem;
    }
  
    .timeline::before {
      left: 20px;
    }
  
    .timeline-item,
    .timeline-item:nth-child(even) {
      padding-left: 60px;
      padding-right: 0;
      justify-content: flex-start;
    }
  
    .timeline-item::before {
      left: 20px;
    }
  
    section {
      padding: 5rem 1.5rem;
    }
  
    .section-title {
      font-size: 2.5rem;
    }
  
    .quote-text {
      font-size: 1.3rem;
    }
  
    .records-grid {
      grid-template-columns: 1fr;
    }
  }
