/* Service Page Style Fixes */

/* Fix horizontal scrolling */
body {
  overflow-x: hidden;
}

.container {
  max-width: 100%;
  box-sizing: border-box;
}

/* Service grid improvements */
.service-grid {
  overflow: hidden;
}

.service-image img {
  max-width: 100%;
  height: auto;
}

/* Button improvements */
.btn-primary, 
.btn-secondary {
  white-space: normal;
  text-align: center;
}

/* Responsive fixes */
@media (max-width: 992px) {
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  
  .service-cta {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .btn-primary, 
  .btn-secondary {
    padding: 10px 20px;
    width: auto;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .service-grid {
    padding: 0 10px;
  }
  
  .service-features {
    margin: 0 -10px;
  }
}

/* Service shapes and visual elements fix */
.services-hero-shapes,
.service-detail-shapes,
.cta-shapes {
  overflow: hidden;
} 