    /* CSS */
.global-wrapper {
  {% comment %} max-width: 1800px;  {% endcomment %}
  margin: 3rem 0 auto !important;
  padding: 0 6rem !important; /* Large desktop padding */
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Keep your existing container but remove its padding */
.container {
  max-width: 1400px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
  .global-wrapper {
    padding: 0 4rem !important;
  }
}

@media (max-width: 1024px) {
  .global-wrapper {
    padding: 0 3rem !important;
    margin-top: 6rem !important;
  }
}

@media (max-width: 768px) {
  .global-wrapper {
    padding: 0 2rem !important;
  }
}

@media (max-width: 480px) {
  .global-wrapper {
    padding: 0 2rem !important;
  }
}

/* Remove any existing section paddings */
.section1, .section2, .section3, 
.section4, .section5, .section6, 
.section8 {
  padding: 0 !important; /* Force remove individual paddings */
}

/* Add vertical spacing between sections */
section:not(:last-child) {
  margin-bottom: 4rem !important;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px !important;
  }
}

  [class*="section"] {
    opacity: 1 !important; /* Force visibility for debugging */
}