body {
    background-color: lightblue;
}

.site-header,
.site-footer,
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #d8d8d8;
}

.container-grid {
  display: grid; /* Makes the container a grid container */
  grid-template-columns: auto 1fr; /* Creates two columns: one for the image (auto), one for the text (1fr) */
  align-items: center; /* Vertically centers the content within the grid cells */
  gap: 15px; /* Adds space between the image and text */
}

.site-logo {
    max-width: 110px;
    height: auto;
}

.site-title {
    margin: 0;
    font-size: 1.8rem;
}

.site-title a {
    text-decoration: none;
    color: #222;
}

.site-tagline {
    margin: 0.25rem 0 0 0;
    color: #555;
}

.site-nav {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-nav a {
    color: #0645ad;
    text-decoration: none;
}

.site-nav a:hover {
    text-decoration: underline;
}

main {
    background: #ffffff;
    min-height: 60vh;
}

h1, h2, h3, p {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

ul.links-list {
    padding-left: 1.25rem;
}

ul.link-list li {
    margin-bottom: 0.5rem;
}

.content-note {
    color: #555;
    font-style: italic;
}

.site-footer {
    font-size: 0.95rem;
    color: #555;
    border-top: 1px solid #d8d8d8;
    background: #ffffff;
}

.cookie-consent {
    max-width: 1000px;
    margin: 1rem auto 2rem auto;
    padding: 0 1rem;
    color: #555;
    font-size: 0.9rem;
}