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

body {
    font-family: Arial, sans-serif;
    background-color: #1e2a38;
    color: #f0f4f8;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
    background-color: #2b3b4f;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    color: #6ea8d6;
}

h2 {
    font-size: 1.8em;
    color: #98c1e1;
    margin: 20px 0 10px;
    border-bottom: 2px solid #6ea8d6;
    padding-bottom: 5px;
}

h3 {
    font-size: 1.3em;
    margin-top: 15px;
    color: #dce5f0;
}

p, li {
    font-size: 1em;
    margin-bottom: 10px;
}

.contact {
    font-size: 0.95em;
    color: #c0c9d3;
}

.contact a {
    color: #aad4ff;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

ul {
    margin-left: 20px;
    list-style-type: disc;
}

.summary {
    font-style: italic;
    margin-bottom: 20px;
}

.date {
    font-size: 0.9em;
    color: #aab8c5;
    margin-bottom: 10px;
}

a,
a:visited {
    color: #aad4ff; /* Or any light blue that fits your theme */
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: #d0e9ff; /* A brighter blue on hover */
}
