/* Custom mobile adjustments */
@media (max-width: 768px) {
  /* Fix hero image scaling on mobile */
  .hero {
    background-size: cover !important;
    background-position: center !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
  }

  /* Fix service image scaling on mobile */
  .service-img {
    height: 220px !important;
    object-fit: cover !important;
    transform: scale(1.0) !important;
    object-position: center !important;
    overflow: hidden !important;
  }
  
  /* About image sizing on mobile - full width without container */
  .about-image {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
    width: calc(100% + 2rem) !important;
  }
  
  .about-image img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover !important;
    background-color: transparent !important;
    border-radius: 0 !important;
  }
  
  /* Gallery image sizing on mobile */
  .gallery-item {
    height: 250px !important;
  }
  
  .gallery-img {
    transform: scale(1.0) !important;
  }
  
  /* Checkbox services grid - single column on mobile */
  .services-checkbox-container {
    grid-template-columns: 1fr !important;
  }
} 