.best-car-highlight {
    border: 3px solid #FFD700;
    background: linear-gradient(135deg, #fff8e1, #fff);
    position: relative;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.best-badge {
    background: linear-gradient(90deg, #FFD700, #FFA000);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
    margin: -15px -15px 15px -15px;
}

.cta-button-pulse {
    background: linear-gradient(90deg, #d32f2f, #ff5252);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: bold;
    display: block;
    text-align: center;
    text-decoration: none;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.social-proof-badge {
    background: #1a237e;
    color: white;
    padding: 15px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    margin: 20px 0;
}

.stars {
    font-size: 1.8em;
    color: #FFD700;
    margin-right: 15px;
}
.autocomplete-dropdown {
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    background: white;
    z-index: 10;
}
.autocomplete-item {
    padding: 5px 10px;
    cursor: pointer;
}
.autocomplete-item:hover {
    background: #f0f0f0;
}

section.faq {
  max-width:1200px;
  margin:20px auto;
  font-family: Arial, sans-serif;
  padding: 6px;
}

section.faq h2 {
  text-align:center;
  margin-bottom:16px;
  font-size:28px;
  color:#190859;
}
section.faq .faq-item {
  background: black;
  border: 1px solid white;
  border-left: 4px solid rgba(2,58,30,0.06);
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: box-shadow .18s ease, transform .12s ease;
  box-shadow: 0 6px 18px rgba(6,20,40,0.03);
}

section.faq .faq-item:focus {
  outline: none;
  box-shadow: 0 10px 28px rgba(2,58,30,0.08);
  transform: translateY(-2px);
}
section.faq .faq-item h3 {
  margin: 0;
  font-size: 14px;
  color: white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  line-height:1.25;
}
section.faq .faq-arrow {
  transition: transform .28s ease, color .18s ease;
  color: #666;
  font-size: 18px;
  margin-left: 10px;
}
section.faq .faq-answer {
    display: none;
    margin-top: 10px;
    color: white;
    line-height: 1.6;
    font-size: 15px;
    padding-left: 2px;
    background: blue;
    border-radius: 6px;
}
section.faq .faq-item[aria-expanded="true"] {
  border-left-color: #63b563;
}
section.faq .faq-item[aria-expanded="true"] .faq-answer {
  display:block !important;
}
section.faq .faq-item[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: #023a1e;
}
 #faq-read-more {
    display: block;
    margin: 14px auto 0;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    color: white;
    color: black;
    color: black;
    box-shadow: 0 6px 14px rgba(2, 58, 30, 0.12);
}