/* Responsive Styles */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767px) {
  /* General */
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu.active {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 999;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .mobile-menu li {
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .mobile-menu a {
    display: block;
    color: var(--color-secondary);
    font-weight: 500;
  }
  
  /* Hero Section */
  .hero-section {
    padding-top: 8rem;
  }
  
  .hero-section .container {
    flex-direction: column;
  }
  
  .hero-content {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* About Section */
  .about-content {
    flex-direction: column;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  /* Process Section */
  .process-timeline:before {
    left: 30px;
  }
  
  .process-step {
    padding-left: 70px;
  }
  
  .step-number {
    left: 5px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  /* Cookie Popup */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
    padding-right: 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  /* Header */
  .main-nav li {
    margin-left: 1rem;
  }
  
  /* About Section */
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  /* Benefits */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* Hero Section */
  .hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
  }
  
  /* Benefits */
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}