:root {
  --primary: #F5B301;
  --secondary: #0A2540;
  --bg: #FFFFFF;
  --text: #333333;
  --border: #EAEAEA;
  --font-main: 'Inter', 'Poppins', sans-serif;
}

body{
  margin:0;
  padding:0;
}


body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}


/* ===== GLOBAL LINK RESET ===== */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

