/* Mobile First & Responsive Design */
@media screen and (max-width: 1024px) {
  :root {
    --container-width: 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none; /* Add mobile menu implementation if needed */
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}
