body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #333;
  line-height: 1.6;
  background: #fff;
}


.site-header {
  background: #028FC5; /* Blue header background */
  color: white;
  text-align: center;
  padding: 1rem;
}

.logo-area {
  background: #fff;       /* White background for logo */
  padding: 0.5rem;        /* Optional: space around logo */
  display: inline-block;  /* Keeps background tight around logo */
  border-radius: 4px;     /* Optional: soften corners */
}

.logo-area img {
  max-width: 220px;
  height: auto;
}


.tagline {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #DFCD18; /* Gold */
  padding: 0.5rem;
  margin: 0;
  list-style: none;
}

.main-nav li {
  margin: 0 1rem;
}

.main-nav a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.content {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 2rem;
}

.article {
  flex: 1 1 60%;
}

.article h2 {
  color: #028FC5;
}

.sidebar {
  flex: 1 1 30%;
}

.sidebar-box {
  background: #E3E3E3;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.sidebar-box h3 {
  background: #028FC5;
  color: white;
  padding: 0.5rem;
  margin: -1rem -1rem 1rem -1rem;
}

.sidebar-box.green h3 {
  background: #88A370; /* Green header */
}

/* Desktop: three-column grid */
.layout {
  display: grid;
  grid-template-columns: 220px 1fr 300px; /* left nav, main content, right sidebar */
  gap: 2rem;
  padding: 2rem;
  align-items: start;
}

/* Left nav stays on the left */
.left-nav {
  grid-column: 1;
}

/* Main content in the middle */
.content {
  grid-column: 2;
}

/* Right sidebar on the right */
.right-sidebar {
  grid-column: 3;
}

/* Mobile: stack everything */
@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr; /* single column */
  }
  .left-nav,
  .content,
  .right-sidebar {
    grid-column: 1; /* all in one column */
  }

.site-footer {
  text-align: center;
  padding: 1rem;
  color: #333;
}

.site-footer hr.blue {
  border: none;
  height: 2px;
  background: #028FC5;
  margin: 1rem auto;
  width: 90%;
}

.site-footer hr.purple {
  border: none;
  height: 2px;
  background: #8C73FF;
  margin: 1rem auto;
  width: 90%;
}
