/* Tablet Styles (768px - 1023px) */
@media (max-width: 1023px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.9rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Styles (0px - 767px) */
@media (max-width: 767px) {
  .container {
    width: 95%;
    overflow-x: hidden;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  /* Mobile Menu - Updated */
  .mobile-menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .mobile-menu-toggle a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
  }
  
  .mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--charcoal-slate);
    transition: var(--transition);
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background: white;
    padding: 6rem 2rem 2rem;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .main-nav.menu-open {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  
  .nav-item {
    width: 100%;
    height: auto;
    margin: 8px 0;
  }
  
  .nav-link {
    width: 100%;
    height: 50px;
    padding: 0;
    font-size: 1.2rem;
  }
  
  .nav-link::after {
    bottom: 10px;
  }
  
  .nav-cta {
    margin: 15px 0;
    padding: 10px;
  }
  
  /* Layout Adjustments */
  .hero-container {
    flex-direction: column;
  }
  
  .hero-image {
    width: 100%;
    margin: 2rem 0;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .services-grid,
  .advantages-wrapper,
  .stats-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }
  
  .advantages-wrapper img {
    order: -1;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .compact-form-container {
    max-width: 100%;
  }
  
  .order-form {
    padding: 1.5rem;
  }
  
  .cookie-consent .container {
    flex-direction: column;
  }
  
  .cookie-consent p {
    margin-right: 0;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .policy-container {
    padding: 2rem 1.5rem;
  }
  
  /* Angled Sections */
  .angled-section {
    transform: none;
    margin: 3rem 0;
  }
  
  .angled-section > .container {
    transform: none;
    padding: 3rem 15px;
  }
}
