body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  color: #000;
}


/* Headings */
h1,
h2,
h3 {
  color: #111;
}

/* Header */
header {
  border-bottom: 2px solid #444;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Sections */
section {
  margin-bottom: 30px;
}

/* Keywords */
.keyword-list {
  font-size: 0.9rem;
  color: #444;
}

/* Bottom-left fixed logo */
.bottom-logo {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.bottom-logo img {
  width: 80px;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  body {
    padding: 15px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  section {
    margin-bottom: 20px;
  }

  .bottom-logo img {
    width: 60px;
  }
}

/* SITEMAP.HTML CSS  */

.sitemap-header {
  color: #111;
  border-bottom: 2px solid #444;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center;
}
#searchInput {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 15px;
  font-size: 1rem;
  margin-bottom: 20px;
  border: 1px solid #444;
  border-radius: 5px;
}

.sitemap-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sitemap-links a {
  text-decoration: none;
  color: #111;
  padding: 12px 15px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.sitemap-links a:hover {
  background-color: #e6e6e6;
  border-color: #222;
}

mark {
  background-color: yellow;
  color: #000;
}
