/* Responsive Styles */

/* Mobile-first approach - base styles are already in style.css */

/* Prevent horizontal scrolling on mobile */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .row {
    flex-direction: column;
  }
  
  .col {
    flex-basis: 100%;
    max-width: 100%;
  }
  
  .pricing-card.featured {
    transform: none;
    margin: 20px 0;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  #hero {
    padding: 100px 0 50px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin: 0 0 15px 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .row {
    flex-wrap: wrap;
  }
  
  .col {
    flex-basis: 100%;
    max-width: 100%;
  }
  
  .service-item,
  .advantage-item,
  .blog-card {
    margin-bottom: 30px;
  }
  
  .pricing-card.featured {
    transform: none;
    margin: 20px 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .row {
    flex-wrap: wrap;
  }
  
  .col {
    flex-basis: 50%;
    max-width: 50%;
  }
  
  .advantage-item {
    flex-basis: 50%;
    max-width: 50%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  
  .col {
    padding: 0 15px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
