* {
    box-sizing: border-box;
  }

  .vehicles-section {
    padding: 30px 10px;
    font-family: Arial, sans-serif;
    color: #1f2937;
    line-height: 1.6;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .vehicle-cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .vehicle-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .card-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #c47a21;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 18px;
  }

  .vehicle-card h2 {
    font-size: 25px;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .card-intro {
    color: #4b5563;
    margin-bottom: 22px;
    font-size: 15.5px;
  }

  .best-for {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 22px;
  }

  .best-for h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #9a5a13;
  }

  .best-for ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .best-for li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 7px;
    color: #374151;
    font-size: 15px;
  }

  .best-for li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c47a21;
    font-weight: 700;
  }

  .vehicle-list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 18px;
    margin-top: auto;
  }

  .vehicle-detail {
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
  }

  .vehicle-detail h3 {
    font-size: 19px;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .vehicle-image {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #e5e7eb;
  }

  .vehicle-detail p {
    font-size: 14.5px;
    color: #4b5563;
    margin-bottom: 8px;
  }

  .vehicle-detail .capacity-line {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .detail-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: #c47a21;
  }

  .vehicle-detail p:last-child {
    margin-bottom: 0;
  }

  .vehicle-detail strong {
    color: #111827;
  }

  @media (max-width: 768px) {
    .vehicle-list {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 520px) {
    .vehicle-card {
      padding: 22px;
    }

    .vehicle-card h2 {
      font-size: 23px;
    }
  }