:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --card: #111111;
  --card-soft: rgba(255, 255, 255, 0.03);
  --text: #f5f5f5;
  --muted: #b5b5b5;
  --line: rgba(255, 255, 255, 0.08);
  --primary: #c8102e;
  --primary-dark: #8d0e23;
  --primary-light: #c8102e;
  --accent: #c8102e;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  width: 100%;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-text {
  font-size: 13px;
  letter-spacing: 3px;
  color: #cccccc;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.nav-divider {
  color: rgba(255, 255, 255, 0.35);
  font-size: 15px;
  user-select: none;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 5px;
}

.mobile-nav {
  position: absolute;
  top: 79px;
  right: 16px;
  width: 220px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  padding: 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  transition: 0.2s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}


.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.7)),
    url("img/e-tron.jpeg") center center / cover no-repeat;
  animation: heroSlider 20s infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    radial-gradient(circle at top right, rgba(200, 16, 46, 0.18), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -2px;
  max-width: 700px;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 760px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 34px;
  align-items: flex-start;
}

.hero-buttons-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .btn-call {
  white-space: nowrap;
  min-width: 365px;
}

.hero-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.hero-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: 0.25s ease;
}

.hero-socials i {
  font-size: 22px;
  color: var(--white);
}

.hero-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

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

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.btn-call {
  gap: 10px;
  justify-content: center;
}

.btn-full {
  width: 100%;
}

/* SECTIONS */
.section {
  padding: 90px 0;
}

.dark-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1;
  color: var(--white);
}

.section-heading p:last-child {
  margin: 0 0 50px;
  color: #cfcfcf;
  font-size: 18px;
  text-align: justify;
  line-height: 1.9;
}

.section-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

/* CARS */
.cars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.car-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.car-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.car-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-brand {
  margin: 0 0 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
}

.car-content h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.car-description {
  margin-top: 4px;
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.65;
  text-align: left;
  min-height: 120px;
}

.car-specs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-top: 4px;
  color: var(--muted);
  min-height: 44px;
}

.car-specs i,
.ps-icon {
  color: var(--accent);
}

.ps-badge {
  color: var(--white);
  font-weight: 600;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.price-row {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.price-row h4 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 18px;
}

.price-row p {
  margin: 0 0 6px;
}

.price-row p:last-child {
  margin-bottom: 24px;
}

.select-car {
  margin-top: auto;
  align-self: center;
  min-width: 250px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.select-car:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

/* FEATURES / STEPS / CONTACT / FORM */
.features-grid,
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-box,
.step,
.contact-box,
.booking-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-box,
.step {
  padding: 26px;
}

.feature-box h3,
.step h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
}

.feature-box h3 {
  color: var(--primary);
  transition: color 0.2s ease;
}

.feature-box:hover h3 {
  color: var(--primary);
}

.feature-box p,
.step p,
.booking-note {
  margin: 0;
  color: var(--muted);
  text-align: left;
  line-height: 1.7;
}

.step-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 800;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.booking-form {
  padding: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #d8d8d8;
}

input,
select,
textarea {
  width: 100%;
  background: #0b0b0b;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(200, 16, 46, 0.8);
}

input[type="date"],
input[type="time"] {
  color-scheme: dark;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0 22px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.checkbox-group a {
  color: var(--white);
  text-decoration: underline;
}

.checkbox-group a:hover {
  color: var(--accent);
}

.contact-box {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-box h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.contact-box p {
  margin: 0 0 8px;
  color: var(--muted);
  text-align: left;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-links.vertical {
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  align-items: stretch;
}

.contact-links.vertical .btn,
.contact-links.vertical .btn-call {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  white-space: nowrap;
  margin: 0;
}

.contact-links.vertical .btn:hover,
.contact-links.vertical .btn-call:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-links.vertical .btn i,
.contact-links.vertical .btn-call i {
  margin-right: 8px;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--line);
  background: #040404;
}

.footer-inner {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
}

.footer-inner p {
  margin: 0 0 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-left a {
  margin-right: 20px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-left a:hover {
  color: var(--white);
}

.footer-right {
  display: flex;
  gap: 15px;
}

.footer-right a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: 0.25s ease;
}

.footer-right i {
  font-size: 24px;
  color: var(--primary);
}

.footer-right a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.footer-right a:hover i {
  color: var(--white);
}

/* ABOUT / LEGAL */
.about-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28)),
    url("img/wien.png") center center / cover no-repeat fixed;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)),
    url("img/wien.png") center center / cover no-repeat fixed;
}

.legal-page h1 {
  color: var(--accent);
}

.legal-page .seo-content,
.about-page .seo-content {
  text-align: center;
}

.legal-page .seo-content h1,
.legal-page .seo-content h2,
.about-page .seo-content h1,
.about-page .seo-content h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.legal-page .seo-content p,
.about-page p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 18px;
}

.about-page .seo-content {
  background: rgba(0, 0, 0, 0.22);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.back-button {
  display: inline-block;
  margin-bottom: 40px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  transition: 0.2s ease;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

/* SLIDER */
.slider {
  position: relative;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
  z-index: 2;
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.slider-btn-prev {
  left: 14px;
}

.slider-btn-next {
  right: 14px;
}

/* COOKIE */
#cookie-banner button:first-of-type {
  background: var(--primary) !important;
  color: var(--white) !important;
  border: none;
}

#cookie-banner button:first-of-type:hover {
  background: var(--primary-dark) !important;
}

#cookie-banner a {
  color: var(--accent) !important;
}

/* FAHRZEUGE PAGE */
body.fahrzeuge-page {
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
    url("img/highway.jpg") center center / cover no-repeat fixed;
}

.image-banner {
  position: relative;
  height: 420px;
  background: url("img/highway_red.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ABOUT LIST */
ul {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 40px auto;
  text-align: left;
}

ul li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* FAQ */
body.faq-page {
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
    url("img/highway_red.png") center center / cover no-repeat fixed;
}

.faq-section {
  padding: 90px 0;
}

.faq-heading {
  text-align: center;
  margin-bottom: 40px;
}

.faq-heading h1,
.faq-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
}

.faq-heading p {
  margin: 14px auto 0;
  max-width: 760px;
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.7;
}

.faq-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 30px 34px;
  background: var(--card-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.faq-question:hover {
  color: var(--primary);
  padding-left: 10px;
}

.arrow {
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0 0 18px;
  padding: 18px 20px;
  color: #d4d4d4;
  line-height: 1.75;
  background: rgba(255, 255, 255, 0.025);
  border-left: 3px solid var(--primary);
  border-radius: 12px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  color: var(--primary);
}

/* HOVER */
@media (hover: hover) and (pointer: fine) {
  .car-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-buttons-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons-row .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .hero .btn-call {
    min-width: 100%;
    white-space: normal;
  }

  .contact-links.vertical {
    max-width: 100%;
    margin-left: 0;
  }

  .car-description,
  .car-specs {
    min-height: auto;
  }

  .select-car {
    min-width: 100%;
  }

  .section-heading p:last-child {
    text-align: left;
    font-size: 17px;
    line-height: 1.7;
  }

  .contact-links.vertical .btn,
  .contact-links.vertical .btn-call {
    white-space: normal;
  }

  .faq-section {
    padding: 70px 0;
  }

  .faq-container {
    padding: 20px 18px;
  }

  .faq-question {
    font-size: 17px;
    padding: 18px 0;
  }

  .faq-heading p {
    font-size: 15px;
  }

  .faq-answer p {
    padding: 16px;
    font-size: 15px;
  }

  .lightbox-close {
    top: 20px;
    right: 24px;
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .about-page .seo-content {
    padding: 20px;
    background: rgba(0, 0, 0, 0.28);
  }

  
  .section-label,
  .eyebrow,
  .car-brand,
  .price-row h4,
  .faq-heading h1,
  .faq-heading h2,
  .arrow,
  .feature-box h3 {
    color: var(--primary) !important;
  }

  .btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
  }

  .btn-primary:hover {
    background: var(--primary-dark) !important;
  }

  .faq-question:hover {
    color: var(--primary) !important;
  }
}

@media (min-width: 768px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-box {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .features-grid,
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .booking-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
  }

  .cars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ANIMATION */
@keyframes heroSlider {
  0% {
    background:
      linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7)),
      url("img/e-tron.jpeg") center center / cover no-repeat;
  }
  25% {
    background:
      linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7)),
      url("img/e-tron-felgen.jpeg") center center / cover no-repeat;
  }
  50% {
    background:
      linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7)),
      url("img/innen.jpeg") center center / cover no-repeat;
  }
  75% {
    background:
      linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7)),
      url("img/innen2.jpeg") center center / cover no-repeat;
  }
  100% {
    background:
      linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7)),
      url("img/sq8-felgen.jpeg") center center / cover no-repeat;
  }
}

.eyebrow,
.section-label,
.car-brand,
.price-row h4,
.feature-box h3,
.faq-heading h1,
.faq-heading h2,
.arrow,
ul li::before,
.ps-icon,
.car-specs i {
  color: #c8102e !important;
}

.faq-answer p {
  border-left-color: #c8102e !important;
}

.btn-primary {
  background: #c8102e !important;
  border-color: #c8102e !important;
}

.btn-primary:hover {
  background: #8d0e23 !important;
  border-color: #8d0e23 !important;
}