/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .hero-content {
    max-width: 500px;
  }
  
  .hero-content h1 {
    font-size: 40px;
  }
  
  .about-text, .about-image {
    flex: 0 0 100%;
  }
  
  .about-image {
    margin-top: 30px;
    text-align: center;
  }
  
  .about-image img {
    max-width: 80%;
  }
  
  .location-info, .location-map {
    flex: 0 0 100%;
  }
  
  .location-map {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  #hero {
    background-position: 75% center;
  }
  
  .hero-content {
    max-width: 90%;
    padding: 25px;
  }
  
  .header-container {
    height: 70px;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-slider {
    padding: 0 20px;
  }
}

@media screen and (max-width: 576px) {
  #hero {
    background-position: 80% center;
  }
  
  .hero-content {
    padding: 20px;
    max-width: 95%;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .about-image img {
    max-width: 100%;
  }
  
  .footer-column {
    flex: 0 0 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .form-container {
    padding: 20px;
  }
} 