@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* COLOR VARIABLES */
:root {
  --royal-blue: #1b3a4b;
  --royal-gold: #d4af37;
  --cream-bg: #fdf8f5;
  --dark-text: #333;
}

/* GLOBAL BODY */
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1f1f1f;
  line-height: 1.6;
  font-weight: 400;
}


/* HEADINGS */
h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.3px;
  font-weight: 400;
}


.section-break {
  height: 60px;
  background: #ffffff;
}

h2 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
}

h3 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
}


