/* General Styles */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif; /* Futuristic font */
  color: white;
  background-color: #121212; /* Dark background */
}

h1 {
  color: violet;
  text-align: center;
}

p {
  font-size: 1.5rem;
  color: white;
  text-align: center;
  line-height: 2rem;
}

img {
  display: block;
  margin: 20px auto;
  max-width: 80%;
  border-radius: 10px;
}

/* Home Section */
.home-section {
  background-color: #1c1f3a; /* Darker blue */
  padding: 50px 20px;
}

.buy-button {
  display: block;
  margin: 20px auto;
  padding: 15px 30px;
  font-size: 1.5rem;
  color: white;
  background-color: violet;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-button:hover {
  background-color: #ff5e57;
}

/* About Section */
.about-section {
  background-color: #fff; /* Muted blue tone */
  padding: 50px 20px;
}
.about-section p{
  color: #000;
}

/* Why Choose Us Section */
.why-choose-us-section {
  background-color: #2e4053; /* Another blue-inspired shade */
  padding: 50px 20px;
}

.why-choose-us-section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.why-choose-us-section li {
  font-size: 1.5rem;
  margin: 20px 0;
  line-height: 2rem;
  text-align: center;
}

.why-choose-us-section span {
  font-size: 2rem;
  margin-right: 10px;
  vertical-align: middle;
}

.reason-bg {
  background: rgba(255, 255, 255, 0.1); /* Transparent background */
  padding: 15px;
  border-radius: 10px;
  margin-top: 10px;
}

/* Contact Section */
.contact-section {
  background-color: #3b5360; /* Complementary bluish tone */
  padding: 50px 20px;
  text-align: center;
}

.social-icons a {
  margin: 0 15px;
  display: inline-block;
}

.social-icons img {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}