:root {
  --havens-red: #ff1d25;
  --havens-gray: #4C4C4C;
}

/* Body styling */
body {
  font-family: 'Segoe UI', sans-serif; /* Use your custom font if available */
  color: #333;
  background-color: #fff;
}

/* Links */
a {
  color: var(--havens-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Headings */
h1, h2, h3 {
  text-transform: uppercase;
  font-style: italic;
  font-weight: 800;
}

h1 {
  font-size: 1.8em;
  padding-top: 20px;
  font-weight: bold;
}

h2 {
  font-size: 1.6em;
  padding-top: 20px;
  text-align: center;
}

h3 {
  font-size: 1.2em;
  padding: 10px 0;
  text-align: center;
}

/* Paragraph */
p {
  font-size: 1.2em;
  line-height: 1.8em;
  letter-spacing: 0.03em;
}

/* Custom horizontal rule */
.m-hr {
  display: block;
  height: 20px;
  border: 0;
  border-bottom: 1px solid #DADADA;
  margin: 50px 3px;
}

.custom-hr {
  border: none;
  border-top: 1px solid #e4e4e4;
  margin: 2.5rem 0;
}

/* Checkmark list */
.checklist li::before {
  content: '\\2713  ';
  color: var(--havens-red);
}
/* Make all primary buttons Havens red with bold text */
.btn-primary {
  background-color: #ff1d25;
  border-color: #ff1d25;
  font-weight: bold;
  text-transform: uppercase;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #e6001e;
  border-color: #e6001e;
}