/* General reset */
body, h1, h2, h3, p, ul, ol, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #e8f7ff, #ffffff);
    color: #2d2d2d;
    padding: 20px;
    font-size: 16px;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: #00509d;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid #a32c2c;
    padding-bottom: 10px;
}

h2 {
    font-size: 2rem;
    color: #a32c2c;
}

h3 {
    font-size: 1.5rem;
    color: #00509d;
}

/* Paragraphs */
p {
    margin-bottom: 15px;
    text-align: justify;
    color: #333;
}

/* Links */
a {
    color: #a32c2c;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin: 15px 0;
    padding-left: 20px;
    color: #333;
}

li {
    margin-bottom: 8px;
}

/* Blockquotes */
blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background: #f5f5f5;
    border-left: 5px solid #00509d;
    color: #444;
    font-style: italic;
}

/* Highlighted text */
.highlight {
    background-color: #fffae6;
    color: #a32c2c;
    padding: 2px 5px;
    border-radius: 3px;
}

/* Footnotes or citations */
.citation {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    margin-top: 10px;
    display: block;
}

/* Buttons (if applicable) */
button {
    background: #a32c2c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #851e1e;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    body {
        font-size: 14px;
    }
}
