/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

    .responsive-img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 1rem auto;
    }

body {
  font-family: sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Container */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-header-logo span {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  padding-left: 36px;
  height: 32px;
  line-height: 32px;
  font-weight: bold;
  color: #000;
}

.site-header-search {
  flex: 1;
  max-width: 250px;
  margin: 10px;
}

.site-header-search input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
  background-color: #f9f9f9;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

.breadcrumbs span {
  color: #999;
}

/* Main content */
main {
  padding: 24px 0;
}

.content h2 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.content p, .content ol {
  margin-bottom: 16px;
}

.content ol {
  padding-left: 20px;
}

/* Footer */
footer {
  background-color: #f1f1f1;
  padding: 16px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-header-search {
    width: 100%;
    max-width: none;
  }
}

/* Grid Section */
.grid-section {
  background-color: #f9f9f9;
  padding: 24px 0;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.grid-item {
  background-color: #fff;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.grid-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.grid-item p {
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr; /* Single column on small screens */
  }
}
