/* Main Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #111113;
  overflow-x: hidden;
  /* Optional: Add background SVG circles */
  /* background-image: url('../assets/svg/background-circles.svg'); */
  /* background-size: cover; */
  /* background-position: center; */
  /* background-repeat: no-repeat; */
  /* background-attachment: fixed; */
}

/* Utility Classes */
.container {
  max-width: 1307px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Main Page Container */
.page-container {
  max-width: 1307px;
  margin: 0 auto;
  width: 100%;
}

/* Smooth Scroll */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
