/* General Reset */
body {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  color: #222;
}

/* Layout */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* Title & Headers */
h1, h2, h3 {
  font-family: "Merriweather", "Georgia", serif;
  font-weight: 700;
  color: #111;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

/* Tarantino-esque accent: symbolic blood-red underline */
h1::after, h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #b30000, transparent);
  margin-top: 0.3rem;
}

/* Blockquote */
blockquote {
  border-left: 4px solid #b30000; /* symbolic accent red */
  padding-left: 1rem;
  color: #555;
  font-style: italic;
  margin: 1.5rem 0;
}

/* Links */
a {
  color: #004080;
  text-decoration: none;
  border-bottom: 1px solid #004080;
}
a:hover {
  color: #b30000;
  border-bottom: 1px solid #b30000;
}

/* Lists */
ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
li {
  margin-bottom: 0.5rem;
}

/* Call-to-action button */
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-top: 2rem;
  background-color: #004080;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #b30000; /* symbolic Tarantino red */
}
.banner-wrapper {
  width: 100%;
  overflow: hidden;
}
.banner-img {
  width: 100%;
  height: auto;
  display: block;
}
