/* Reset spacing */
html, body {
  background-color: #f9fafb;
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Layout wrapper to push footer down */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* full viewport height */
  max-width: 100%; /* Ensure body does not extend beyond the viewport */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Main content styling */
main {
  flex: 1; /* pushes footer to the bottom on short pages */
  width: 100%;
  margin: 0;
  /* rem scales with browser size */
  padding: 2rem;
  line-height: 1.6;
  box-sizing: border-box; /* Make sure padding doesn't affect width */
  overflow-x: hidden; /* Prevent horizontal overflow */
}

h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
}

p {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  line-height: 1.7;
}


/* AdSense safety styling */
.adsbygoogle {
  display: block;
  width: 100%;
  margin: 2rem 0;
  overflow: hidden;
}

/* Hide unfilled ads cleanly */
.adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}