/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom font declaration */
@font-face {
  font-family: "ArchivoBlack-2";
  src: url("../fonts/ArchivoBlack-2.otf") format("opentype");
}

/* Base body styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #646464;
  background-color: #fff;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Container helper */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  overflow: hidden; /* Prevent horizontal scrolling in containers */
}
