/* =============================================
   Creech Import Repair – Chevrolet Equinox Page
   Mirrors Chevrolet Traverse page design language
   ============================================= */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #c8102e;
  --red-dark: #a00d24;
  --dark: #1a1a1a;
  --mid-dark: #2d2d2d;
  --gray-bg: #f5f5f5;
  --gray-light: #ebebeb;
  --border: #ddd;
  --text: #333;
  --muted: #666;
  --white: #ffffff;
  --radius: 4px;
  --shadow: 0 2px 8px rgba(0, 0, 0, .12);
  --navy-deep: #081120;
  --navy: #0E1B2E;
  --navy-soft: #16263D;
  --paper: #F4F0E6;
  --paper-dim: #E9E3D4;
  --coral: #FF6A45;
  --coral-dim: #C44E32;
  --cyan: #5BE8D6;
  --cyan-dim: #3BA89B;
  --steel: #92A1B3;
  --ink: #101622;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(16, 22, 34, 0.12);
}

html {
  scroll-behavior: smooth;
}
/* 
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
} */

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--red-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.ac-comparison-section {
  padding: 80px 0;
  background: #f7f8fb;
}

.section-title {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  color: #14345b;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  line-height: 1.8;
}

.table-responsive {
  overflow-x: auto;
  border-radius: 12px;
}

.ac-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.ac-comparison-table thead {
  background: #DA3F3B;
}

.ac-comparison-table th {
  color: #fff;
  padding: 18px 20px;
  font-size: 17px;
  text-align: left;
  font-weight: 600;
}

.ac-comparison-table td {
  padding: 18px 20px;
  color: #555;
  line-height: 1.7;
  vertical-align: top;
  border-bottom: 1px solid #e8e8e8;
}

.ac-comparison-table tbody tr:nth-child(even) {
  background: #f9fbfd;
}

.ac-comparison-table tbody tr:hover {
  background: #eef6ff;
  transition: .3s;
}

.ac-comparison-table td:first-child {
    width: 22%;
    font-weight: 500;
    color: #414141;
}

.ac-comparison-table td:nth-child(2) {
  width: 39%;
}

.ac-comparison-table td:nth-child(3) {
  width: 39%;
}

.diagnosis-box {
  margin-top: 35px;
  padding: 25px 30px;
  /* background: #14345b; */
  color: #fff;
  border-left: 5px solid #d72638;
  border-radius: 10px;
}

.diagnosis-box strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
      color: #444;
}

.diagnosis-box p {
  margin: 0;
  line-height: 1.8;
       color: #444;

}

@media(max-width:991px) {

  .section-title h2 {
    font-size: 30px;
  }

  .ac-comparison-table {
    min-width: 900px;
  }

}

@media(max-width:767px) {

  .ac-comparison-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 26px;
  }

}


/* ===== Diagnostic steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}

.step {
  background: var(--navy);
  padding: 30px 26px;
}

.step .step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #DA3F3B;
  line-height: 1;
}

.step h4 {
  margin-top: 14px;
  font-size: 17px;
  color: var(--paper);
}

.step p {
  margin: 10px 0 0;
  font-size: 14.5px;
  color: var(--steel);
}

@media (max-width:900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:600px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ===== Makes grid ===== */
.makes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  /* width: 1250px; */
  /* margin: auto; */
}

.make-card {
  border: 1px solid var(--line-dark);
  padding: 30px 30px;
  /* background: var(--paper); */
}

.make-card h3 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #221f1f;
  margin-bottom: 10px;
}

.make-card p {
  font-size: 15px;
  color: #000;
  opacity: 0.8;
  line-height: 28px;
}

.make-card a {
  font-size: 13.5px;
  color: #C44E32;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;

}

@media (max-width:860px) {
  .makes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .makes {
    grid-template-columns: 1fr;
  }
}

.domestic_auto_sec {
  background-color: #f2f2f2;;
  padding: 80px 0px !important;
}
.common_auto_sec {
  padding: 80px 0px !important;
}

/* ===== Related links ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line-dark);
  margin: auto;
}

.related-grid a {
  padding: 18px 20px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.related_auto_sec{
    background-color: #f2f2f2;
    padding: 90px 0px !important;
}
.related-grid a::after {
  content: '→';
  color: var(--coral-dim);
}

.related-grid a:hover {
  background: #f2f2f2;
}

@media (max-width:860px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}
/* .section-soft{
  background-color: #E9E3D4;
  padding: 60px 0px;
} */
 .benefits.b-personal{
  background-color: #f2f2f2 !important;
 }