/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font Smoothing for Crisp Text */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base Layout */
html, body {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1d1d1f;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 0.6em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 8vw, 10rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Paragraphs */
p {
  font-family: 'Lato', sans-serif !important;
  font-size: 1.125rem !important;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1em;
}

/* Optional: Links */
a {
  color: #007aff;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #005ecb;
}
