/* Global */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #f4f6f8;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #222;
}

/* Main content flex grow */
main {
  flex: 1;
}

/* Logo */
.logo {
  max-height: 120px;
  width: auto;
  display: block;
  margin: 0 auto 20px auto;
}

/* Vehicle Row Layout */
.vehicle-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.25s ease;
}
.vehicle-row:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.vehicle-img {
  flex: 0 0 280px;
  max-width: 280px;
}
.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-info {
  flex: 1;
  padding: 15px 20px;
}
.vehicle-info h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.vehicle-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  color: #444;
}
.vehicle-info ul li {
  margin-bottom: 5px;
}
.vehicle-info strong {
  color: #000;
  font-weight: 600;
}

.vehicle-price {
  flex: 0 0 160px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #c8102e;
  padding: 15px;
}

/* Buttons */
.btn-danger {
  background-color: #c8102e;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 18px;
}
.btn-danger:hover {
  background-color: #a50d25;
}

/* Footer (sticky) */
footer {
  background: #111;
  color: #eee;
  font-size: 0.9rem;
  padding: 30px 0;
  margin-top: auto;
}
footer h5 {
  font-weight: 700;
  color: #fff;
}
footer .footer-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 15px;
  text-align: left;
}
footer a {
  color: #c8102e;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
