/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

/* Header */
header {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}

nav ul li a {
  color: #333;
  text-decoration: none;
}

.hero {
  margin-top: 50px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* Logo */

img.logo {
  max-width: 50%; 
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/* Amazon store */

 .amazon-store {
  padding: 10px 0;
  text-align: center;
}

img.amazon-store {
  max-width: 30%;
}

/* Featured Products */
.featured-products {
  padding: 50px 0;
  text-align: center;
}

.product-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.product {
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product img {
  width: 200px;
  height: 200px;
  margin-bottom: 10px;
}

.product h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.price {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

/* Testimonial */
.testimonial {
  background-color: #f7f7f7;
  padding: 50px;
  text-align: center;
}

.testimonial h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

blockquote {
  font-size: 18px;
  margin-bottom: 20px;
}

cite {
  font-style: italic;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 0;
}

footer nav ul li a {
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
}
