.fixed-background-section {
  position: relative;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* This is the key for the fixed position effect */
  background-attachment: fixed; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
  color: #ffffff; /* Default text color */
}

/* Fix for iOS/Safari where background-attachment: fixed is buggy */
@supports (-webkit-touch-callout: none) {
  .fixed-background-section {
    background-attachment: scroll;
  }
}