
 .car-plans {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      max-width: 1250px;
      margin: 50px auto;
    }

    .car-card {
      background: #1a1a1a0d;
      border-radius: 12px;

      width: 100%;
      max-width: 400px;
      padding: 25px;
      position: relative;
      transition: transform 0.3s ease;
    }

    .car-card:hover {
      transform: translateY(-5px);
    }

    .car-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: #28a745;
      color: white;
      padding: 4px 10px;
      font-size: 12px;
      border-radius: 20px;
      font-weight: bold;
    }

    .car-card img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 10px 0 20px;
    }

    .car-title {
      font-size: 28px;
      font-weight: 700;
      color: #003049;
    }

    .car-subtitle {
      font-size: 16px;
      color: #444;
      margin-bottom: 20px;
    }

    .car-features {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
    }

    .car-features li {
      margin: 10px 0;
      color: #333;
      font-size: 15px;
    }

    .car-features i {
      color: #728596;
      margin-right: 10px;
    }

    .book-btn {
      background: #13357b;
      color: white;
      border: none;
      padding: 12px 20px;
      font-size: 15px;
      border-radius: 8px;
      cursor: pointer;
      width: 100%;
      transition: background 0.3s ease;
    }

    .book-btn:hover {
      background: #9aadb9;
    }

    @media (max-width: 768px) {
      .car-card {
        max-width: 90%;
      }
    }
