/* Mobile-first approach with responsive breakpoints */

/* Base styles are already mobile-first */

/* Tablet (768px and up) */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
  }
  
  .mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    transition: var(--transition);
  }
  
  /* Hide desktop menu */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 200;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  
  .main-nav.menu-open {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  /* Services grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* About, Benefits, and Contact grids */
  .about-grid,
  .benefits-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Pricing grid */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Cookie popup */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Large Mobile (576px and below) */
@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Make hero content more compact */
  .hero-content {
    padding: 60px 0;
  }
}
