body {
  margin: 0;
  padding: 2rem 1rem;
  font-family: 'Karla', sans-serif;
  background-color: #fdf7d1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Page Title */
h1 {
  background-color: #fce86b;
  color: #2b2b00;
  padding: 1rem 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Info Box Template */
.info-box {
  background-color: #fff7c2;
  border: 2px solid #b9a034;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  max-width: 850px;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
}

.info-box h2 {
  background-color: #353500;
  color: #fff9b5;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Layout for image + text */
.box-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.box-content img {
  max-width: 200px;
  border-radius: 8px;
}

.text-content {
  flex: 1;
  min-width: 200px;
}

/* Outside text blocks */
.outside-text {
  max-width: 850px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #2b2b00;
}

/* Category section titles outside boxes */
.category-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #2b2b00;
  background-color: #fce86b;
  padding: 0.5rem 1rem;
  border-left: 6px solid #d1b247;
  border-radius: 4px;
  max-width: 850px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 3rem;
  opacity: 0.75;
}

.footer-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: #2b2b00;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}