/* Tablet and smaller */
@media (max-width: 992px) {
  .section {
    padding: var(--space-2xl) 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 73px; /* Header height approx */
    left: 0;
    width: 100%;
    height: calc(100vh - 73px);
    background-color: var(--color-bg);
    flex-direction: column;
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 99;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Grid adjustments */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  /* Hero section adjustments */
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}
