/* Custom styles for carRegistrationCheck.html only - VChecker brand palette */

.white-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  padding: 32px 24px;
  margin: 40px auto 40px auto;
  max-width: 900px;
}

.hero-section img.hero-image {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 24px auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero-cta, .primary-button {
  background: #0C7489;
  color: #fff;
  border: 1.5px solid #0a5f70;
  border-radius: 12px;
  padding: 18px 42px;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-block;
  margin: 28px auto 0 auto;
  transition: background 0.17s, box-shadow 0.17s, transform 0.17s, color 0.17s;
  box-shadow: 0 6px 24px rgba(12, 116, 137, 0.13), 0 1.5px 8px #0a5f7044;
  position: relative;
  overflow: hidden;
}

.hero-cta::before, .primary-button::before {
  content: '';
  position: absolute;
  left: 10%;
  top: 0;
  width: 80%;
  height: 45%;
  background: linear-gradient(90deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.03) 100%);
  border-radius: 8px 8px 40% 40%;
  pointer-events: none;
  z-index: 1;
}

.hero-cta:hover, .primary-button:hover {
  background: #0a5f70;
  color: #fff;
  box-shadow: 0 12px 36px rgba(12, 116, 137, 0.22), 0 4px 18px #0a5f7044;
  transform: translateY(-3px) scale(1.055);
  border-color: #0C7489;
}

.feature-info-text {
  display: none;
  margin: 16px 0 0 0;
  padding: 16px;
  background: #f8fafc;
  border-left: 4px solid #007bff;
  color: #222;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s;
}

.feature-info-text.show {
  display: block;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px);}
  to   { opacity: 1; transform: translateY(0);}
}

.hero-cta i, .primary-button i {
  margin-left: 10px;
  font-size: 1.1em;
  vertical-align: middle;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 32px;
}

.feature-card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  background: #fff;
  border: 2px solid #0C7489;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  text-align: left;
  color: #040404;
}

.feature-card i {
  color: #0C7489;
  font-size: 2em;
  margin-bottom: 14px;
}

.feature-card:hover {
  background: #d7d9ce;
  border-color: #0a5f70;
  transform: translateY(-2px);
}

.secondary-button {
  background: #fff;
  color: #0C7489;
  border: 2px solid #0C7489;
  border-radius: 10px;
  padding: 13px 30px;
  font-size: 1em;
  font-weight: 600;
  margin: 8px 10px;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
}

.secondary-button:hover {
  background: #0a5f70;
  color: #fff;
  border-color: #0C7489;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 2px 12px #0a5f7044;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 18px 0 30px 0;
}

.faq-question {
  width: 100%;
  margin-bottom: 14px;
  text-align: left;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #0C7489;
  padding: 18px 18px;
  font-size: 1em;
  color: #040404;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.faq-question:hover {
  background: #d7d9ce;
  color: #0C7489;
  border-color: #0a5f70;
}

.primary-button.cta-fix {
  display: block;
  width: 200px;
  padding: 15px;
  margin: 20px auto;
  text-align: center;
  text-decoration: none;
  background-color: #0C7489;
  color: white;
  border-radius: 5px;
  font-size: 0.8em;
  font-weight: 50;
}
