/* Responsive Styles */

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-text, .about-info {
    flex: 0 0 100%;
  }
  
  .about-info {
    margin-top: 30px;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info, .contact-form {
    flex: 0 0 100%;
  }
  
  .contact-form {
    margin-top: 40px;
  }
}

@media (max-width: 800px) {
  header .container {
    flex-direction: column;
    padding: 15px;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .toggle {
    display: none;
  }
  
  nav.active>.toggle {
    display: flex;
  }
  
  .nav-links li {
    margin: 10px 0;
  }
  
  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  .language-selector {
    margin: 15px 0;
  }
  
  .banner {
    margin-top: 96px;
  }
  
  .banner-content h2 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .tabs-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-btn {
    width: 100%;
    text-align: center;
    padding: 10px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .footer-content > div {
    flex: 0 0 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .banner-content h2 {
    font-size: 1.8rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .services-grid, .product-grid, .partners-content {
    grid-template-columns: 1fr;
  }
}
