/* ===================================================
   RESET + BASE TYPOGRAPHY
   =================================================== */
body, h1, h2, h3, p, ul, li, blockquote {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  background-color: #f5f5f5;
  color: #333333;
}

p {
  margin-bottom: 24px;
}

/* ===================================================
   HEADER
   =================================================== */
header {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 28px;
  color: #ff0000; /* Red blood colour */
  margin: 0;
}

header h2 {
  font-size: 20px;
  color: #444444;
  margin-top: 10px;
  font-weight: normal;
}

header p {
  font-size: 16px;
  margin-top: 10px;
  color: #666;
}

/* ===================================================
   MAIN CONTAINER
   =================================================== */
.container {
  max-width: 850px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #ffffff;
}

/* ===================================================
   BLOCKQUOTE
   =================================================== */
blockquote {
  font-size: 20px;
  background-color: #fff8c6; /* soft yellow for readability */
  padding: 25px 30px;
  margin: 40px auto;
  font-style: italic;
  color: #222222;
  border-left: 8px solid #999900;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  line-height: 1.7;
}

/* Wrap the blockquote */
.quote-wrapper {
  display: flex;
  justify-content: center;
}

/* ===================================================
   LINKS
   =================================================== */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===================================================
   UNORDERED LISTS (for links and references)
   =================================================== */
ul {
  margin: 20px 0;
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* ===================================================
   IMAGES
   =================================================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background-color: #B5B300;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #222222;
}

footer a {
  color: #222222;
  font-weight: bold;
}

/* ===================================================
   SOCIAL MEDIA LINKS (if used)
   =================================================== */
.social-media-links {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-media-links li {
  margin-right: 10px;
}

.social-media-links a {
  text-decoration: none;
  color: #333333;
}

/* ===================================================
   RESPONSIVE ADJUSTMENTS
   =================================================== */
@media screen and (max-width: 600px) {
  header h1 {
    font-size: 22px;
  }

  .container {
    padding: 0 10px;
  }

  .section-title {
    font-size: 20px;
  }

  .logo {
    width: 60px;
    height: 60px;
  }
}
