/* Responsive Styles */

/* Extra Large Devices */
@media (max-width: 1400px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* Large Devices */
@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 70px 0;
  }
}

/* Medium Devices */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section {
    padding: 60px 0;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text,
  .about-image {
    width: 100%;
  }
}

/* Small Devices */
@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }
  
  .logo {
    height: 50px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--secondary-color);
    padding: 60px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
  }
  
  .nav-item {
    margin: 0 0 20px 0;
  }
  
  .nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-method {
    flex-direction: column;
  }
  
  .contact-icon {
    margin-bottom: 10px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input,
  .newsletter-form .btn {
    width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    margin-top: 15px;
  }
}

/* Extra Small Devices */
@media (max-width: 576px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .hero {
    flex-direction: column;
    height: 400px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .legal-page,
  .blog-post {
    padding: 100px 15px 50px;
  }
}
