:root {
  --repro-blue: #0a4074;
  --repro-blue-dark: #07335e;
  --repro-teal: #0d8f9d;
  --repro-gold: #d9a441;
  --repro-text: #111827;
  --repro-muted: #5f6b7a;
  --repro-border: #dce5ec;
  --repro-soft: #f4f8fb;
}

.repro-page {
  margin: 12px 0 36px;
  color: var(--repro-text);
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
}

.repro-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 26px;
  border: 1px solid var(--repro-border);
  border-left: 6px solid var(--repro-gold);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 64, 116, .08);
}

.repro-eyebrow {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--repro-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.repro-hero h1 {
  margin: 0 0 10px;
  color: var(--repro-blue) !important;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.2;
}

.repro-hero p {
  max-width: 790px;
  margin: 0 0 17px;
  color: var(--repro-muted);
  font-size: 15px;
  line-height: 1.65;
}

.repro-primary-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--repro-blue);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
}

.repro-primary-link:hover {
  background: var(--repro-blue-dark);
  color: #fff !important;
}

.repro-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 20px;
  border: 1px solid #c9dde9;
  border-radius: 8px;
  background: var(--repro-soft);
}

.repro-hero-card i {
  color: var(--repro-gold);
  font-size: 38px;
}

.repro-hero-card strong {
  color: var(--repro-blue);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
}

.repro-hero-card span {
  color: var(--repro-muted);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
}

.repro-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.repro-service-card {
  min-height: 176px;
  padding: 18px;
  border: 1px solid var(--repro-border);
  border-top: 3px solid var(--repro-blue);
  border-radius: 8px;
  background: #fff;
}

.repro-service-card:nth-child(2) {
  border-top-color: var(--repro-teal);
}

.repro-service-card:nth-child(3) {
  border-top-color: var(--repro-gold);
}

.repro-service-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 9px;
  background: #eef7fb;
  color: var(--repro-blue);
  font-size: 20px;
}

.repro-service-card h2 {
  margin: 0 0 9px;
  color: var(--repro-blue);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.repro-service-card p {
  margin: 0;
  color: var(--repro-muted);
  font-size: 14px;
  line-height: 1.6;
}

.repro-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: start;
}

.repro-equipment-panel,
.repro-profile-card {
  border: 1px solid var(--repro-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(10, 64, 116, .05);
}

.repro-equipment-panel {
  padding: 20px;
}

.repro-section-heading {
  margin-bottom: 14px;
}

.repro-section-heading span {
  display: block;
  color: var(--repro-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.repro-section-heading h2 {
  margin: 5px 0 0;
  color: var(--repro-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

.repro-equipment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.repro-equipment-list div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--repro-border);
  border-radius: 7px;
  background: var(--repro-soft);
}

.repro-equipment-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  color: var(--repro-blue);
  font-size: 17px;
}

.repro-equipment-list span {
  color: var(--repro-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.repro-profile-card {
  overflow: hidden;
}

.repro-profile-card img {
  display: block;
  width: 100%;
  max-height: 230px;
  object-fit: cover;
  border-bottom: 1px solid var(--repro-border);
}

.repro-profile-card div {
  padding: 17px;
}

.repro-profile-card h2 {
  margin: 0 0 8px;
  color: var(--repro-blue);
  font-size: 19px;
  font-weight: 800;
}

.repro-profile-card p {
  margin: 0 0 14px;
  color: var(--repro-muted);
  font-size: 14px;
  line-height: 1.58;
}

.repro-profile-card div a {
  display: inline-block;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid #bfd5e6;
  border-radius: 6px;
  background: #f3f8fc;
  color: var(--repro-blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.repro-profile-card div a:hover {
  border-color: var(--repro-blue);
  background: #e8f3fa;
}

@media (max-width: 980px) {
  .repro-hero,
  .repro-service-grid,
  .repro-content-grid {
    grid-template-columns: 1fr;
  }

  .repro-hero-card,
  .repro-profile-card {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .bb-container.container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .row,
  .row-wrapper {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .gsc-column,
  .column-inner,
  .column-content-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .repro-hero,
  .repro-equipment-panel {
    padding: 16px;
  }

  .repro-hero h1 {
    font-size: 24px;
  }

  .repro-equipment-list {
    grid-template-columns: 1fr;
  }
}
