/* Reset & Base Styles */
* {
  box-sizing: border-box;
}

body, h1, h3, p, blockquote, pre {
  margin: 0;
  padding: 0;
}

/* Body Styling */
body {
  background-color: #1A5463; /* Deep blue background */
  color: #FFFFFF;            /* White text */
  margin: 90px 90px 15px 90px;
  font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
}

/* Link Styling */
a:link {
  color: #0066FF;
}

a:visited {
  color: #0000FF;
}

a:hover {
  color: #33AAFF;
  text-decoration: underline;
}

/* Layout Container */
#wrap {
  min-width: 500px;
  max-width: 800px;
  margin: 0 auto;
}

/* Typography Classes */
.yellowtext,
.yellowone,
.yellowtwo,
.date,
.yellowtext_ds {
  color: #f5ab35;
  font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
}

.blackheadone {
  font-size: 68px;
  font-weight: 400;
  line-height: 60px;
  color: #000000;
  text-align: center;
}

.blackheadtwo {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  color: #000000;
}

.blackheadthree {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  color: #000000;
}

.blackheadfour {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  color: #000000;
}

.bluetext {
  font-size: 14px;
  line-height: 14px;
  color: #0066FF;
}

.whitelink {
  font-size: 17px;
  font-weight: 700;
  line-height: 17px;
  text-decoration: underline;
  color: #FFFFFF;
}

.bluelink {
  font-size: 17px;
  font-weight: 700;
  line-height: 24px; /* Adjusted from 217px */
  color: #0066FF;
}

.yellowtext_ds {
  font-size: 16px;
  line-height: 22px;
  font-weight: normal;
  text-align: justify;
}

.blacktext_ds {
  font-size: 14px;
  line-height: 22px;
  font-weight: normal;
  color: #000000;
  text-align: justify;
}

/* Headings & Paragraphs */
h1 {
  font-size: 23px;
  font-weight: 700;
  line-height: 23px;
}

h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 17px;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

blockquote {
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
}

pre {
  font-size: 11px;
  font-weight: 400;
  line-height: 11px;
}

/* Image Alignment */
td img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
