@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --rx-navy:     #0B1F4B;
  --rx-blue:     #1A3C8F;
  --rx-red:      #D91B1B;
  --rx-red-soft: #F03535;
  --rx-gold:     #C8902A;
  --rx-cream:    #F7F5F0;
  --rx-white:    #FFFFFF;
  --rx-gray:     #6B7280;
  --rx-border:   #E5E2DA;
  --rx-text:     #1A1A2E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--rx-text);
  background: var(--rx-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--rx-navy);
  line-height: 1.2;
}

a { color: var(--rx-blue); text-decoration: none; transition: opacity .15s; }
a:hover { opacity: .75; }
img { max-width: 100%; display: block; }
input, button, select, textarea { font-family: 'DM Sans', sans-serif; font-size: 16px; }
