/* ============================================
   SERVICES PAGE - CONTAINER MAX-WIDTH FIX
   Ensure all containers use 1600px max-width
   ============================================ */

/* Main Services Section Container */
.pricing-plans .container {
  max-width: 1600px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 clamp(1rem, 4vw, 2rem) !important;
  box-sizing: border-box !important;
}

/* Services Grid Container */
.pricing-grid {
  max-width: 1600px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* Hero Section Container (if used) */
.services-hero-header .container {
  max-width: 1600px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 clamp(1rem, 4vw, 2rem) !important;
  box-sizing: border-box !important;
}

/* General Container Override */
.pricing-plans .container,
.services-hero-header .container {
  max-width: 1600px !important;
}

