@media(max-width: 1200px) {

  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  .hero-left p {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-left h1 {
    font-size: 52px;
  }

  .stats-grid,
  .cards-grid,
  .civil-grid,
  .professionals-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width: 768px) {

  #contact-button {
    display: none;  
  }

  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .lawyers-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .lawyer-left,
  .lawyer-right {
    transform: none;
  }

  .lawyer-card {
    width: 100%;
    max-width: 340px;
  }

  .lawyer-card img {
    height: 500px;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .section-header h2,
  .professional-content h2,
  .contact-box h2 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-card {
    width: 100%;
  }

  .contact-box {
    padding: 50px 30px;
  }

  .section {
    padding: 80px 0;
  }

}

@media(max-width: 480px) {

  .hero-left h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-left p {
    font-size: 16px;
  }

  .lawyer-card img {
    height: 440px;
  }

  .stat-card,
  .service-card,
  .civil-card {
    padding: 28px;
  }

  .contact-box {
    border-radius: 28px;
  }

}