.rentacar-section {
    font-family: 'Segoe UI', sans-serif;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f4faff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .rentcar-img{
    height: 40px!important;
  }
  .rentcar-heading{
    color: #000;
  }

  .rentacar-section h2 {
    color: #002F6C;
    text-align: center;
    margin-bottom: 2rem;
  }

  .rentacar-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .rentacar-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    max-width: 300px;
    flex: 1 1 280px;
    text-align: center;
    transition: transform 0.2s ease;
  }

  .rentacar-card:hover {
    transform: scale(1.02);
  }

  .rentacar-card img {
    max-width: 150px;
    height: 40px;
    margin-bottom: 15px;
  }

  .rentacar-card h3 {
    color: #002F6C;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .rentacar-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .rentacar-card a {
    color: #007ab8;
    text-decoration: none;
  }

  .rentacar-card a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .rentacar-grid {
      flex-direction: column;
      align-items: center;
    }
  }