* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #1a1a1a;
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.post-content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.read-more {
    color: #0066cc;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

footer {
    background-color: #1a1a1a;
    padding: 10px 20px;
    color: #fff;
    text-align: center;
}

footer p {
    font-size: 14px;
}

.single-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.post-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.post-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.post-body {
    font-size: 18px;
    line-height: 1.8;
}

.post-body h2 {
    margin-top: 30px;
    font-size: 24px;
}

.post-body img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}

.author-info {
    margin-top: 40px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
}

.author-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.related-posts {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.related-posts ul {
    list-style: none;
}

.related-posts ul li {
    margin-bottom: 10px;
}

.related-posts ul li a {
    color: #0066cc;
    text-decoration: none;
}

.related-posts ul li a:hover {
    text-decoration: underline;
}

ul.article-list {
  padding-left: 30px;
}

ul.article-sub-list {
  padding-left: 60px;
}

/* Quotes Page Styles */
.quotes-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quotes-section h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.quote-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quote {
    font-size: 24px;
    font-style: italic;
    color: #555;
    padding: 20px;
    border-left: 5px solid #0066cc;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    margin: 0 auto;
}

.quote footer {
    font-size: 18px;
    color: #888;
    margin-top: 15px;
}

footer {
    background-color: #1a1a1a;
    padding: 10px 20px;
    color: #fff;
    text-align: center;
}

footer p {
    font-size: 14px;
}