* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #f8f8f8;
      font-family: Arial, sans-serif;
    }

    .header {
      background-color: #1a1a2e;
      color: whitesmoke;
      padding: 20px;
      text-align: center;
    }

    .header ul {
      list-style: none;
      margin-top: 10px;
    }

    .header ul li {
      display: inline-block;
      margin: 2px;
      color: gray;
      cursor: pointer;
      font-size: 24px;
    }

    .header ul li:hover {
      color: white;
    }

    .header ul a {
      text-decoration: none;
    }

    .searchbar {
      text-align: center;
      padding: 15px;
    }

    .searchbar input {
      width: 80%;
      max-width: 500px;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .product {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .p {
      width: 100%;
      max-width: 500px;
    }

    .p img {
      width: 100%;
      border-radius: 10px;
    }

    .ax {
      display: inline-block;
      margin-top: 10px;
      color: #007BFF;
      text-decoration: none;
      font-weight: bold;
    }

    .productbox {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .box {
      background-color: white;
      color: black;
      width: 350px;
      height: auto;
      border: 2px solid #ccc;
      border-radius: 10px;
      padding: 15px;
      transition: 0.3s;
    }

    .box:hover {
      background-color: black;
      color: white;
      cursor: pointer;
    }

    .box img {
      width: 100%;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .box h2 {
      color: green;
    }

    .box a {
      color: #007BFF;
      text-decoration: none;
    }

    .footer {
      background-color: #007BFF;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
    }

    .footer .about,
    .footer .contact {
      margin: 20px 0;
    }

    @media (max-width: 768px) {
      .header ul li {
        display: block;
        margin: 10px 0;
      }

      .searchbar input {
        width: 90%;
      }

      .box {
        width: 90%;
      }

      .p {
        padding: 0 10px;
      }
    }
