body {
  line-height: 1.6;
  color: #333;
  max-width: 960px; 
  margin: 0 auto;
  background:url(../images/bg_body.jpg) repeat-x;
}
.hero {
  text-align: center;
  margin-bottom: 30px;
}
.hero h1 {
  font-size: 2.5em;
  color: #005a9c;
}
.search-bar {
  margin: 20px 0;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}
.category-nav a {
  display: inline-block;
  padding: 8px 16px;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}
.category-nav a.active, .category-nav a:hover {
  background: #005a9c;
  color: white;
}
.guide-category h2 {
  color: #005a9c;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
  margin-top: 30px;
  margin-left: 8px;
}
.guide-category ul {
  list-style: none;
  padding: 0;
}
.guide-category li {
  margin: 18px 10px;
}
.guide-category a {
  font-weight: 500;
  color: #005a9c;
  text-decoration: none;
  font-size: 1.1em;
}
.guide-category a:hover {
  text-decoration: underline;
}
.guide-category p {
  margin: 6px 0 0 0;
  color: #111;
  font-size: 0.95em;
}
.cta-section {
  text-align: center;
  margin: 50px 0;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
}
.btn-primary {
  background: #005a9c;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin: 0 10px;
  font-weight: bold;
}
.btn-secondary {
  background: #666;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin: 0 10px;
}