* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-image: url("bgimg.jpg");
  background-size: cover;
  background-position: center;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

header {
  margin-bottom: 40px;
}

header img {
  max-width: 150px;
}

section {
  margin-bottom: 40px;
}

h2 {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
  color: #333;
}

p {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 14px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  padding: 10px;
  flex: 1 0 200px;
  background-color: #A57632;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icons a i {
  margin-right: 8px;
}

.social-icons a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: rgba(255, 255, 255, 0.2);
}

.social-icons a:hover:before {
  opacity: 1;
}

.shop-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.shop-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  padding: 10px;
  flex: 1 0 200px;
  background-color: #A57632;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.shop-buttons a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: rgba(255, 255, 255, 0.2);
}

.shop-buttons a:hover:before {
  opacity: 1;
}

.shop-buttons a.amazon {
  background-color: #FF9900;
  color: #fff;
}

.shop-buttons a.flipkart {
  background-color: #2874F0;
  color: #fff;
}

.shop-buttons a.avvni {
  background-color: #000000;
  color: #fff;
}

.social-icons a.instagram {
  background-color: #B82098;
  color: #fff;
}

.social-icons a.facebook {
  background-color: #3B5998;
  color: #fff;
}

.social-icons a.whatsapp {
  background-color: #25D366;
  color: #fff;
}

.social-icons a.youtube {
  background-color: #FF0000;
  color: #fff;
}

.social-icons a.pinterest {
  background-color: #BD081C;
  color: #fff;
}

footer {
  margin-top: 40px;
  text-align: center;
  color: #777;
  font-size: 14px;
}
