/* Global styles */
html, body {
  position: relative;
  min-height: 100%;
  font-size: 14px;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  margin: 0; /* Reset margins to avoid unexpected overflow */
  padding: 0;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Body content container */
body {
  margin: 0; /* Remove unnecessary bottom margin for the footer */
}

/* Layout container */
.container {
  max-width: 960px; /* Restrict content width */
  margin: 0 auto; /* Center content horizontally */
  padding: 0 15px; /* Add padding for spacing */
}

/* Pricing section */
.pricing-header {
  max-width: 700px;
  margin: 0 auto; /* Center the pricing content */
  padding: 20px 0; /* Add spacing for better readability */
}

/* Sticky footer */
.footer {
  /* position: absolute;  */
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px; /* Fixed footer height */
  line-height: 60px; /* Vertically center text */
  background-color: #f5f5f5;
  text-align: center; /* Center-align footer content */
  z-index: 10; /* Ensure it stays above other content */
}

/* Prevent unnecessary layout issues */
* {
  box-sizing: border-box; /* Ensure consistent width calculations */
}

/* Optional - Add a global reset for better cross-browser consistency */
body, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}
