  <!-- Styles -->
  <style>
    /* General Styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
      font-size: 16px;
      line-height: 1.5;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button */
.btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #95774d;
}

/* Header Styles */
header {
  background-color: #f4f4f4;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.logo img {
  max-width: 200px;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 20px;
}

nav li:first-child {
  margin-left: 0;
}

nav a {
  font-size: 18px;
  font-weight: bold;
}

nav a:hover {
  color: #95774d;
}

/* Breadcrumb Styles */
.breadcrumb {
  background-color: #f4f4f4;
  padding: 20px 0;
  margin-top: 80px;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
}

.breadcrumb li {
  font-size: 18px;
  margin-right: 10px;
}

.breadcrumb li:last-child {
  color: #95774d;
}

/* Products Section Styles */
.products {
  padding: 80px 0;
  text-align: center;
}

.products h2 {
  margin-bottom: 40px;
}

.product {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 20px;
  width: 300px;
  text-align: center;
  padding: 40px 20px;
  transition: box-shadow 0.3s ease;
}

.product:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.product img {
  margin-bottom: 20px;
}

.product h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.product p {
  margin-bottom: 20px;
}

/* Footer Styles */
footer {
  background-color: #000;
  color: #95774d;
  padding: 20px 0;
  text-align: center;
  margin-top: 80px;
}

footer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .logo img {
    max-width: 150px;
  }

  nav {
    float: none;
  }

  nav ul {
    text-align: center;
  }

  nav li {
    display: block;
    margin: 0;
    margin-bottom: 10px;
  }
  .products {
    padding: 40px 0;
  }

  .product {
    margin: 20px auto;
    width: 80%;
  }
}