/* Classic typeset styling with Georgia font */

/* Base typography */
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: normal;
    line-height: 1.3;
    color: #222;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5em;
    letter-spacing: -0.02em;
}

h1 small {
    font-size: 0.5em;
    color: #666;
    font-style: italic;
    display: block;
    margin-top: 0.25em;
}

/* Page header */
.page-header {
    border-bottom: 1px solid #ddd;
    margin-bottom: 1.5em;
    padding-bottom: 0.5em;
}

/* Container styling */
.container-fluid {
    max-width: 700px;
    margin: 0 auto;
    padding: 2em 1.5em;
}

/* Paragraph styling */
p {
    margin-bottom: 1.25em;
    text-align: left;
}

/* Links */
a {
    color: #4a6da7;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

a:hover,
a:focus {
    color: #2c4a7c;
    text-decoration: none;
    border-bottom-color: #4a6da7;
}

/* Lists */
ul, ol {
    margin-bottom: 1.25em;
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

/* Selection styling */
::selection {
    background-color: #d4e1f4;
    color: #222;
}
