/* ========================================
   M2Reporter.com - Main Stylesheet
   Metro 2 Credit Reporting Software
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --m2r-blue: #144478;
  --m2r-green: #B3CC48;
  --m2r-green-alt: #9AB83A;
  --m2r-green-dark: #8AA533;
  --m2r-navy: #0F3A66;
  --m2r-navy-dark: #0D3158;
  
  /* Gradients */
  --m2r-blue-gradient: linear-gradient(135deg, #436993 0%, #144478 58%, #0D2C4E 100%);
  --m2r-green-gradient: linear-gradient(135deg, #CEDE88 0%, #B3CC48 55%, #74852F 100%);
  
  /* Neutral Colors */
  --color-text: #333;
  --color-text-light: #666;
  --color-text-muted: #6B7280;
  --color-bg: #f7f7f9;
  --color-white: #fff;
  --color-border: #e2e8f0;
  
  /* Spacing */
  --container-max-width: 1200px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  
  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
}

/* ===== RESET & BASE STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: Arial, "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--m2r-blue);
  margin-bottom: 1rem;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--m2r-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--m2r-navy);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--color-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}

.header-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.logo a {
  display: block;
  line-height: 0;
}

/* Main Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  color: var(--color-text-light);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 8px 4px;
  display: block;
}

.main-nav a:hover {
  color: var(--m2r-blue);
}

/* Dropdown Menu Styles */
.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown-toggle {
  cursor: pointer;
}

.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  min-width: 240px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  margin-top: 8px;
  list-style: none;
  z-index: 1000;
}

.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu li {
  margin: 0;
}

.main-nav .dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav .dropdown-menu a:hover {
  background: var(--color-bg);
  color: var(--m2r-blue);
}

/* Dropdown arrow indicator */
.main-nav .dropdown-toggle::after {
  content: " ▾";
  font-size: 12px;
  margin-left: 4px;
}

/* Header Actions (Login + Search) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.login-btn {
  color: var(--color-text-light);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.login-btn:hover {
  color: var(--m2r-blue);
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  background: var(--color-bg);
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 4px 0;
  height: auto;
}

.search-box input {
  border: none;
  background: transparent;
  padding: 0 8px;
  font-size: 12px;
  outline: none;
  width: 100px;
  color: var(--color-text);
  line-height: 1.2;
  height: auto;
}

.search-box input::placeholder {
  color: var(--color-text-muted);
}

.search-box button {
  background: none;
  border: none;
  padding: 0 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
  line-height: normal;
  display: flex;
  align-items: center;
}

.search-box button:hover {
  color: var(--m2r-blue);
}

/* Legacy header styles - keeping for backwards compatibility */
header {
  background: var(--color-white);
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.email, .phone {
  font-size: 18px;
  font-weight: bold;
  color: var(--m2r-blue);
}

/* Old Navigation - keeping for backwards compatibility */
nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: var(--color-text-light);
  font-weight: 600;
  padding: 10px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--m2r-blue);
}

/* Responsive Header */
@media (max-width: 968px) {
  .header-container {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .main-nav {
    order: 3;
    flex: 1 1 100%;
    justify-content: center;
  }
  
  .main-nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Responsive dropdown */
  .main-nav .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--color-bg);
    margin-top: 8px;
    border-radius: 0;
  }
  
  .main-nav .dropdown:hover .dropdown-menu,
  .main-nav .dropdown-menu {
    display: none;
  }
  
  .main-nav .dropdown.active .dropdown-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 15px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .main-nav ul {
    gap: 15px;
  }
  
  .main-nav a {
    font-size: 14px;
    padding: 6px 2px;
  }
  
  .search-box input {
    width: 70px;
  }
  
  .header-actions {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .search-box {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0 30px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: var(--m2r-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.subheadline {
  font-size: 22px;
  color: var(--color-text-light);
  margin: 0 auto 30px;
  max-width: 800px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 20px;
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--m2r-green-alt);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--m2r-green-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--m2r-navy);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--m2r-navy-dark);
  transform: translateY(-1px);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Back Button */
.back-button {
  padding: 8px 15px;
  border: 2px solid var(--m2r-blue);
  background: var(--m2r-green);
  color: var(--color-white);
  border-radius: 10px;
  cursor: pointer;
  font-size: 10pt;
  font-weight: 600;
  transition: all 0.15s ease;
}

.back-button:hover {
  background: #A7C53F;
}

.back-button:active {
  transform: translateY(1px);
}

/* ===== CHECKMARKS / FEATURES LIST ===== */
.checks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.check-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 200px;
}

.check .icon {
  font-weight: 700;
}

.check .blue {
  color: var(--m2r-blue);
}

.check .green {
  color: var(--m2r-green);
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* 4 Column Centered Card Grid */
.card-grid.four-col-centered {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.card-grid.four-col-centered .card {
  min-width: 0;
}

.card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.card h3 {
  color: var(--m2r-blue);
  margin-bottom: 10px;
}

.card:hover,
.card:focus {
  border-color: var(--m2r-blue);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== SECTIONS ===== */
section {
  padding: 60px 0;
}

/* Reduce spacing between consecutive sections */
section + section {
  padding-top: 40px;
}

section:has(+ section) {
  padding-bottom: 40px;
}

section.light {
  background: var(--color-white);
}

section.dark {
  background: #f8f9fa;
}

section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--m2r-blue);
  margin-bottom: 40px;
}

/* ===== VIDEO SECTION ===== */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  border-radius: var(--radius-md);
  width: 100%;
  height: 450px;
  border: none;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-size: 24px;
  font-style: italic;
  color: var(--m2r-blue);
  margin-bottom: 20px;
  line-height: 1.4;
}

.testimonial .author {
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial .company {
  color: var(--color-text-light);
  font-size: 14px;
}

/* ===== FEATURES GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 4 Column Centered Feature Grid */
.feature-grid.four-col-centered {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid.four-col-centered .feature {
  min-width: 0;
}

/* Credit Bureau Info - Left Aligned Text */
.feature-grid.credit-bureau-info .feature {
  text-align: left;
}

.feature-grid.credit-bureau-info .feature h3 {
  text-align: center;
}

.feature {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
}

.feature h3 {
  color: var(--m2r-blue);
  margin-bottom: 10px;
  font-size: 20px;
}

.feature p {
  color: var(--color-text-muted);
  margin: 0;
}

/* Products Page - 4 Column Centered Features */
.feature-grid.products-features {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-grid.products-features .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* ===== FAQ SECTION ===== */
.faq-item {
  max-width: 800px;
  margin: 0 auto 25px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  background: #f8f9fa;
  padding: 20px;
  font-weight: 700;
  color: var(--m2r-blue);
  cursor: pointer;
}

.faq-answer {
  padding: 20px;
  color: var(--color-text-light);
  background: var(--color-white);
}

details summary {
  list-style: none;
  padding: 12px 14px;
  background: var(--m2r-blue);
  color: var(--color-white);
  font-weight: 700;
  cursor: pointer;
}

details summary::-webkit-details-marker {
  display: none;
}

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
  margin-bottom: 2rem;
}

th, td {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 16px;
  vertical-align: top;
  text-align: left;
}

th {
  background: #f7fafc;
  font-weight: 700;
  color: #2d3748;
  border-bottom: 2px solid var(--color-border);
}

tr td:first-child {
  font-weight: 700;
  min-width: 180px;
  background: #fafafa;
  color: var(--m2r-blue);
}

tr:hover td {
  background: #f8f9fa;
}

/* ===== FOOTER ===== */
footer {
  background: #2d2d2d;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-content.footer-centered {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  justify-items: center;
}

.footer-content.footer-centered .footer-section {
  text-align: center;
}

.footer-section h3 {
  color: var(--color-white);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section a {
  display: block;
  color: #ccc;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--m2r-green);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.footer-bottom p {
  margin-bottom: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-grid.products-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-grid.four-col-centered {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .card-grid.four-col-centered {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  .video-wrapper iframe {
    height: 250px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .card-grid.four-col-centered {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-grid.products-features {
    grid-template-columns: 1fr;
  }
  
  .feature-grid.four-col-centered {
    grid-template-columns: 1fr;
  }
  
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  
  nav {
    flex-direction: column;
    gap: 10px;
  }
  
  table {
    font-size: 14px;
  }
  
  th, td {
    padding: 8px;
  }
  
  /* Tighter spacing on mobile */
  section {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* ========================================
   Product Cards Styling (M2R Cards)
   ======================================== */

.m2r-cards {
  padding: 30px 0 60px 0;
  background: #f7f7f9;
}

.m2r-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px calc(20px + 20px) 50px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
  overflow: visible;
}

/* 3-card centered layout for features page */
.m2r-wrap.three-cards {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}

.m2r-stage {
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  position: relative;
  aspect-ratio: 3/5;
  filter: drop-shadow(0 16px 22px rgba(22, 40, 88, 0.22));
  overflow: visible;
}

.m2r-layer {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--m2r-blue-gradient);
  overflow: hidden;
}

.m2r-stage:nth-child(even) .m2r-layer {
  background: var(--m2r-green-gradient);
}

.m2r-card {
  position: absolute;
  inset: 16px -20px 16px 16px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 12px rgba(16, 24, 40, 0.10);
  padding: 18px 16px calc(min(50%, 100px) - 40px + 30px);
}

.m2r-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m2r-title {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #2d2d2d;
  margin: 0;
  text-align: left;
}

.m2r-pill {
  width: 60px;
  height: 20px;
  border-radius: 999px;
  background: var(--m2r-blue-gradient);
}

.m2r-stage:nth-child(even) .m2r-pill {
  background: var(--m2r-green-gradient);
}

.m2r-features {
  list-style: disc;
  margin: 14px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 3px;
}

.m2r-features li {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  display: list-item;
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 8px;
}

.m2r-price-badge {
  position: absolute;
  left: calc(50% + 40px);
  bottom: -50px;
  transform: translateX(-50%);
  width: min(50%, 110px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  padding: 15px;
  box-shadow: 0 0 0 5px #fff, 0 0 0 13px var(--m2r-blue), 0 10px 18px rgba(16, 24, 40, 0.24);
  isolation: isolate;
  z-index: 3;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease;
}

.m2r-stage:nth-child(even) .m2r-price-badge {
  box-shadow: 0 0 0 5px #fff, 0 0 0 13px var(--m2r-green), 0 10px 18px rgba(16, 24, 40, 0.24);
}

.m2r-price-badge:hover {
  transform: translateX(-50%) scale(1.03);
}

.m2r-price-badge:active {
  transform: translateX(-50%) scale(0.97);
}

.m2r-price-badge:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px #fff, 0 0 0 15px var(--m2r-blue), 0 10px 18px rgba(16, 24, 40, 0.24);
}

.m2r-stage:nth-child(even) .m2r-price-badge:focus-visible {
  box-shadow: 0 0 0 5px #fff, 0 0 0 15px var(--m2r-green), 0 10px 18px rgba(16, 24, 40, 0.24);
}

.m2r-price {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

.m2r-credit {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-size: 12px;
  opacity: 0.95;
  letter-spacing: 0;
  line-height: 1.05;
  text-align: center;
  color: #fff;
}

@supports not (width: min(60%, 140px)) {
  .m2r-price-badge {
    width: 110px;
  }

  .m2r-card {
    padding-bottom: 90px;
  }
}

@media (max-width: 980px) {
  .m2r-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .m2r-wrap.three-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .m2r-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-right: 20px;
  }
  
  .m2r-wrap.three-cards {
    grid-template-columns: 1fr;
  }

  .m2r-card {
    inset: 16px 16px 16px 16px;
  }

  .m2r-price-badge {
    padding: 12px;
  }
}

/* ========================================
   GOOGLE CUSTOM SEARCH - CUSTOM STYLING
   Added for integration with header search
   ======================================== */

/* Style the Google search container */
.gcse-search {
  width: 160px;
}

/* Style the search box wrapper */
.gsc-search-box {
  margin: 0 !important;
  border: none !important;
}

/* Style the input field to match your original design */
.gsc-input-box {
  border: none !important;
  border-radius: var(--radius-sm) !important;
  background: var(--color-bg) !important;
  padding: 4px 0 !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
}

/* Style the input text */
.gsc-input {
  padding: 0 0.4rem !important;
  font-size: 12px !important;
  background: transparent !important;
  color: var(--color-text) !important;
  line-height: 1.2 !important;
  height: auto !important;
}

/* Style placeholder text */
.gsc-input::placeholder {
  color: var(--color-text-muted) !important;
}

/* Style the search button */
.gsc-search-button {
  background: transparent !important;
  border: none !important;
  padding: 0 0.4rem !important;
  margin: 0 !important;
  min-width: auto !important;
  height: auto !important;
  line-height: normal !important;
  display: flex !important;
  align-items: center !important;
}

.gsc-search-button-v2 {
  background: transparent !important;
  border: none !important;
  padding: 0 0.4rem !important;
  margin: 0 !important;
  min-width: auto !important;
  height: auto !important;
  line-height: normal !important;
  display: flex !important;
  align-items: center !important;
}

.gsc-search-button svg,
.gsc-search-button-v2 svg {
  fill: var(--color-text-muted) !important;
  transition: fill 0.3s ease !important;
}

.gsc-search-button:hover svg,
.gsc-search-button-v2:hover svg {
  fill: var(--m2r-blue) !important;
}

/* Hide the Google "X" clear button if you don't want it */
.gsib_b {
  display: none !important;
}

/* Hide "powered by Google" branding (optional) */
.gcsc-branding {
  display: none !important;
}

/* Make sure it fits in your header */
.header-actions .gcse-search {
  display: inline-block;
}

/* Remove any extra spacing/padding */
.gsc-control-cse {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

/* Style the search results page (if using two-page layout) */
.gsc-results-wrapper-overlay {
  border-radius: var(--radius-md) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Style individual search results */
.gsc-result {
  border-bottom: 1px solid var(--color-border) !important;
}

.gs-title {
  color: var(--m2r-blue) !important;
}

.gs-title:hover {
  color: var(--m2r-navy) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .gcse-search {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .gcse-search {
    display: none;
  }
}
/* ===== CONTENT SECTION STYLES ===== */
/* These are the missing styles for data-furnisher.html and credit-repair.html */

.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-section h3 {
  color: var(--m2r-blue);
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-section h4 {
  color: var(--m2r-blue);
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.content-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-section ul {
  margin-bottom: 30px;
  margin-left: 20px;
}

.content-section ul li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.content-section ol {
  margin-bottom: 30px;
  margin-left: 20px;
}

.content-section ol li {
  margin-bottom: 15px;
  line-height: 1.8;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: #E8F4F8;
  border-left: 4px solid var(--m2r-blue);
  padding: 20px 25px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.highlight-box p {
  margin-bottom: 10px;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* ===== WARNING BOX ===== */
.warning-box {
  background: #FFF3CD;
  border-left: 4px solid #FFA500;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.warning-box h3 {
  color: #856404;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
}

.warning-box p {
  color: #856404;
  margin-bottom: 0;
}

/* ===== INFO BOX ===== */
.info-box {
  background: #E7F3FF;
  border-left: 4px solid var(--m2r-blue);
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.info-box h3 {
  color: var(--m2r-blue);
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
}

.info-box p {
  margin-bottom: 0;
}

/* ===== BUREAU BOX ===== */
.bureau-box {
  background: #F8F9FA;
  border: 3px solid var(--m2r-blue);
  border-left: 6px solid var(--m2r-blue);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(20, 68, 120, 0.1);
}

/* Alternate colors for each bureau box */
.bureau-box:nth-of-type(odd) {
  border-color: var(--m2r-blue);
  border-left-color: var(--m2r-blue);
}

.bureau-box:nth-of-type(even) {
  border-color: var(--m2r-green);
  border-left-color: var(--m2r-green);
  box-shadow: 0 2px 8px rgba(179, 204, 72, 0.1);
}

.bureau-box h4 {
  color: var(--m2r-blue);
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
}

.bureau-box:nth-of-type(even) h4 {
  color: var(--m2r-green-dark);
}

.bureau-box p {
  margin-bottom: 15px;
}

.bureau-box ul {
  margin-left: 20px;
  margin-bottom: 0;
}

.bureau-box ul li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.bureau-box ul li:last-child {
  margin-bottom: 0;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid var(--m2r-blue);
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
}

.cta-box h3 {
  color: var(--m2r-blue);
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-box .btn {
  margin-top: 10px;
}

/* ===== LEGITIMATE OPTIONS ===== */
.legitimate-options {
  margin: 30px 0;
}

.legitimate-options h3 {
  color: var(--m2r-blue);
  font-size: 24px;
  margin-bottom: 20px;
}

.legitimate-options ul {
  margin-left: 20px;
}

.legitimate-options ul li {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legitimate-options ul li strong {
  color: var(--m2r-blue);
  font-weight: 700;
}

/* ===== STEPS LIST ===== */
.steps-list {
  margin: 30px 0;
}

.steps-list ol {
  margin-left: 20px;
  counter-reset: item;
}

.steps-list ol li {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .content-section {
    padding: 0 15px;
  }
  
  .highlight-box,
  .warning-box,
  .info-box,
  .bureau-box,
  .cta-box {
    padding: 20px;
  }
  
  .cta-box h3 {
    font-size: 24px;
  }
}
