body {
      font-family: Arial, sans-serif;
    }

    /* Hero Section */
    .hero {
      background: url('image/auto-mechanic-checking-car (1).jpg') no-repeat center center;
      background-size: cover;
      color: white;
      padding: 150px 20px;
      text-align: center;
    }

    .hero h1 {
      font-size: 50px;
      font-weight: bold;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }   

    .hero p {
      font-size: 20px;
      margin-bottom: 20px;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    }

    /* Service Cards */
    .service-card {
      transition: 0.3s;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    .footer {
      background-color: #111;
      color: white;
      padding: 20px;
      text-align: center;
    }