/* Responsive styles for domain.com */

/* Large Screens (above 1200px) */
@media (min-width: 1201px) {
  .container {
    max-width: 1200px;
  }
}

/* Desktop and Laptop (992px - 1200px) */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.8rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  /* Hero Section */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 30px;
    margin-top: 60px; /* Add space between header and image on mobile */
  }
  
  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Audit Types */
  .audit-types-content {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Why Choose Us */
  .why-choose-content {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Testimonials */
  .testimonial-content {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  /* Order Form */
  .order-form-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  /* Navigation */
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background-color: var(--block-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 1000;
  }
  
  nav ul.active {
    right: 0;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  /* Audit Types */
  .audit-types-content {
    grid-template-columns: 1fr;
  }
  
  /* Why Choose Us */
  .why-choose-content {
    grid-template-columns: 1fr;
  }
  
  /* Workflow */
  .workflow-content {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  /* Cookie Consent */
  .cookie-consent {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}

/* Small Mobile Devices (320px - 575px) */
@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .logo {
    font-size: 1.6rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .policy-container {
    padding: 20px;
    margin-top: 100px;
  }
}
