

@media (max-width: 1200px) {
  .about .container,
  .installation .container,
  .services__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  form {
    width: 90%;
    max-width: 600px;
  }

  .nav__logo {
    margin-left: 1rem;
  }

  .gallery__item {
    max-width: 600px;
  }

  .footer__col {
    text-align: center;
    
  }

}


@media (max-width: 600px) {

  .nav__inner {
    flex-direction: column;
  }

  .nav {
    height: 100%;
    padding: 1rem 0;
  }

  .faqs__list {
    max-width: 100%;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
  }

  .trust-badges .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 1.5rem; /* space between images */
  justify-items: center; /* center images horizontally */
  align-items: center; /* center images vertically */
}

.trust-badges img {
  max-width: 100%;
  height: auto;
  max-height: 100px; /* keeps them visually consistent */
  object-fit: contain;
}

  .hero .btn-primary {
  margin-left: var(--space-md);
  google-trust-badge
}

.google-trust-badge {
  width: 171px;
  height: 60px;
}

.hero__company-text {
  display: none;
}

}