/* Add Inter font (place in head) */

/* ---- Theme variables ---- */
/* Cleaned for Product Pages Consistency */
:root {
  --brand: #3873bd;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --muted: #6b7280;
  --line: #d1d5db;
  --shadow-sm: 0 6px 18px rgba(24, 39, 75, 0.06);
  --shadow-md: 0 10px 30px rgba(19, 24, 44, 0.08);
  --radius: 12px;
}

/* Light surface panels (cards) */
.lightBg {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  margin-bottom: 28px;
}

/* ratio fallback */
.ratio {
  position: relative;
  width: 100%;
}

.ratio iframe,
.ratio>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ratio-16x9 {
  padding-top: 56.25%;
}

/* ---- Feature rows / product sections ---- */
.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.feature-row.left {
  flex-direction: row;
}

.feature-row.right {
  flex-direction: row-reverse;
}

.img-col,
.text-col {
  flex: 1 1 420px;
  min-width: 280px;
}

/* images */
.img-col img {
  width: 100%;
  border-radius: 12px;
  /* height handled by product-pages.css */
  object-fit: cover;
  box-shadow: var(--shadow-md);
  display: block;
}

/* text column */
.text-col h2 {
  color: var(--brand) !important;
  margin-bottom: 14px;
}

.text-col p {
  color: #374151;
  line-height: 1.6;
  font-size: 0.98rem;
}

/* divider */
.b-example-divider {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 60px 0;
}

/* lists */
.page-content-wrapper ul {
  list-style-type: disc !important;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.page-content-wrapper ul li {
  margin-bottom: 0.5rem;
}

/* Ensure headings are blue in the main content area */
.page-content-wrapper h1,
.page-content-wrapper h2,
.page-content-wrapper h3 {
  color: var(--brand) !important;
    font-size: 25px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  transition: all .18s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--brand), #2d63a6);
  color: #fff;
  box-shadow: 0 8px 24px rgba(56, 115, 189, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(56, 115, 189, 0.22);
}
.lead {
    font-size: 1rem !important;
    font-weight: 300;
}
.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(56, 115, 189, 0.12);
}

/* Footer image */
.text-center img.w-100 {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

/* Mobile responsive adjustments */
@media (max-width: 992px) {
  .feature-row {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .feature-row {
    flex-direction: column;
    text-align: center;
  }



  .img-col,
  .text-col {
    width: 100%;
    min-width: auto;
  }

  .text-col h2,
  .text-col p {
    text-align: center;
  }

  .b-example-divider {
    margin: 36px 0;
  }
}

/* Security Section Styling */
.security-section {
  text-align: center;
}

.security-section h1 {
  color: var(--brand) !important;
}

.security-section ul {
  display: inline-block;
  text-align: left;
  line-height: 1.7rem;
  margin: 0 auto;
  max-width: 900px;
}

/* 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;
}