/* Cleaned for Product Pages Consistency */
:root {
  --brand: #3873bd;
  --bg: #f7f9fc;
  --text: #2c2c2c;
  --muted: #6b7280;
  --line: #d1d5db;
  --radius: 8px;
  --shadow: 0 6px 18px rgba(24, 39, 75, 0.06);
}

.contact_us {
  width: 100%;
  padding: 0;
  margin: 0;
}

.banner-img {
  width: 100% !important;
  display: block;
  object-fit: cover;
}

/* ---- RESTORATION FIXES (Scoped) ---- */

/* 1. Layout & Text Colors */
.page-content-wrapper {
  color: var(--text);
}

.page-content-wrapper h1,
.page-content-wrapper h2,
.page-content-wrapper h3,
.page-content-wrapper h4,
.page-content-wrapper h5,
.page-content-wrapper h6 {
  color: var(--brand) !important;
  font-weight: 700;
}

.page-content-wrapper .small_heading {
  display: block;
  font-weight: 600;
  color: var(--brand);
  /* Ensure blue labels */
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* 2. Bullets Restoration */
.page-content-wrapper ul {
  list-style-type: disc !important;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  margin-left: 0;
}

.page-content-wrapper ul li {
  list-style-position: outside;
  margin-bottom: 0.5rem;
  color: var(--text);
}

/* 3. Product Cards (Bottom Section) */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card img.card-img-top {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.product-card .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card .card-title {
  color: var(--brand) !important;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.product-card .card-text {
  color: #555;
  flex-grow: 1;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Helpers */
.text-body-emphasis {
  color: var(--brand) !important;
}

.color-blue {
  color: var(--brand) !important;
}

/* Custom bullet list – safe & scoped */
.bullet-list {
  list-style-type: disc;
  list-style-position: outside;
  margin: 0 0 1rem 1.6rem;
  padding-left: 0;
}

.bullet-list li {
  margin-bottom: 0.6rem;
  color: #2c2c2c;
  line-height: 1.6;
}

/* Optional: bullet color */
.bullet-list li::marker {
  color: #3873bd;
  font-size: 1.05em;
}