
    body {  margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f9f9f9; }
    header, footer { background-color: #706d6d; color: white; padding: 1rem; text-align: center; }
    nav { background: #000; display: flex; justify-content: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
    nav a { padding: 1rem; text-decoration: none; color: #333; }
    nav a:hover { color: rgb(0, 226, 255); }
    .hero { background: url('/images/Firefly_benz%20at%20la%20freeway%20125991.jpg') no-repeat center/cover; height: 400px; display: flex; align-items: center; justify-content: center; color: white; font-size: 3rem; text-shadow: 2px 2px 5px #000; }
    .hero2 { background: url('/images/Firefly_benz at la freeway 491155.jpg') no-repeat center/cover; height: 100px; display: flex; align-items: center; justify-content: center; color: white; font-size: 3rem; text-shadow: 2px 2px 5px #000; }
    .hero3 { background: url('/images/Firefly_benz at la freeway 576221.jpg') no-repeat center/cover; height: 100px; display: flex; align-items: center; justify-content: center; color: rgb(0, 226, 255); font-size: 2rem; text-shadow: 2px 2px 5px #000;}  
    .section { padding: 2rem; max-width: 1000px; margin: auto; }
    .form-group { margin-bottom: 1rem; }
    label { display: block; margin-bottom: 0.5rem; }
    input, textarea, select { width: 100%; padding: 0.5rem; border: 1px solid #ccc; border-radius: 5px; }
    button { background: #ff6f00; color: white; padding: 0.7rem 1.2rem; border: none; border-radius: 5px; cursor: pointer; }
    button:hover { background: #e65c00; }
    bzName {background-color: black;}
        .car-listing {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .car-item {
      width: 300px;
      border: 1px solid #ccc;
      padding: 10px;
      text-align: center;
    }
    .car-item img {
      width: 100%;
      height: auto;
    }
    .contact-container {
      max-width: 900px;
      margin: 60px auto;
      padding: 40px;
      background: #ffffff;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      animation: fadeIn 1s ease-out;
    }

    .contact-container h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 32px;
      color: #333;
    }






    .scroll-container {
      overflow: hidden;
      white-space: nowrap;
      width: 100%;
      background: #fff;
      padding: 20px 0;
      position: relative;
    }

    .scroll-content {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 20s linear infinite;
    }

    .image-wrapper {
      display: inline-block;
      position: relative;
      margin: 0 20px;
    }

    .scroll-content img {
      height: 220px;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .image-wrapper:hover img {
      transform: scale(1.05);
      filter: brightness(70%);
    }

    .book-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgb(0, 226, 255);
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
      font-size: 14px;
    }

    .image-wrapper:hover .book-button {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.05);
      text-decoration: none;
    }

    .book-button:hover {
      background: #0056b3;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

/* Base Styles */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  color: white;
  padding: 10px 20px;
}
.menu-toggle {
  font-size: 2em;
  cursor: pointer;
  display: none; /* Hidden by default */
}
nav ul {
  display: flex;
  gap: 12px;
  list-style: none;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1em;
}

/* Mobile Styles */
@media (max-width: 870px) {
  .menu-toggle {
    display:flex;
  }
  nav ul {
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 80px;
    left:200px;
    width: 30%;
    display: none;
    z-index: 9999;
    align-content: center;
    opacity: 80%;
    padding-bottom: 10px;
  }
  nav ul.show {
    display:grid;
  }
}

