/* =========================
   Global Styles & Variables
   ========================= */

/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Colors */
:root {
  --primary-color: #0078ff;
  --secondary-color: #005fcc;
  --background-light: #f9f9f9;
  --text-dark: #222;
  --text-light: #555;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}
