/* General Styles */
body {
  font-family: 'Lora', serif; /* Elegant serif font */
  line-height: 1.7;
  color: #383838;
  margin: 0;
  background: #fefefe;
  -webkit-font-smoothing: antialiased; /* Better font rendering */
}

.container {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Playfair Display', serif; /* Dramatic display serif */
  font-weight: 700;
  color: #6c757d;
  line-height: 1.3;
  margin-bottom: 0.8em;
}

h1 {
  font-size: 2.5em;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.4em;
}

p {
  margin-bottom: 1.2em;
  text-align: justify;
}

a {
  color: #2980b9; /* A bit brighter blue */
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent; /* Subtle underline effect */
}

a:hover {
  color: #3498db; /* Slightly lighter on hover */
  border-bottom-color: #3498db;
}

/* Blockquotes */
blockquote {
  font-style: italic;
  font-size: 1.1em;
  color: #7f8c8d;
  border-left: 3px solid #bdc3c7;
  padding: 1em 2em;
  margin: 2em 0;
  quotes: "\201C""\201D""\2018""\2019"; /* Proper quotes */
}

blockquote:before {
  color: #bdc3c7;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

blockquote p {
  display: inline;
}

/* Code */
pre, code {
  font-family: 'Source Code Pro', monospace; /* Modern monospace */
  background: #f4f4f4;
  border-radius: 4px;
  padding: 0.5em;
  overflow-x: auto;
}

pre {
  padding: 1em;
  line-height: 1.4;
}

code {
    padding: 2px 4px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  margin-bottom: 2em;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background: #f0f0f0;
  font-weight: 600;
}

tr:hover {
    background-color: #f9f9f9;
}

/* Forms (Example - Adapt as needed) */
input[type="text"],
input[type="email"],
textarea {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
}

/* Footer */
footer {
  text-align: center;
  padding: 2em 0;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 0.9em;
  margin-top: 40px;
}

/* Added Styles */
hr { /* Horizontal rules */
    border: 0;
    border-top: 1px solid #eee;
    margin: 2em 0;
}

.highlight { /* Example highlight class */
    background-color: #fff8dc; /* Light yellow */
    padding: 2px 5px;
    border-radius: 3px;
}