/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8f8fc;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: #754ef9;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

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

.hero p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #222;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.store-btn:hover {
  background: #444;
}

/* Features Section */
.features {
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.myheading{
  color: #754ef9;
}
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box h3 {
  margin: 15px 0;
  font-size: 1.3rem;
}

/* Privacy Policy Section */
.privacy-policy {
  padding: 4rem 2rem;
  background-color: #f9f9fb;
  color: #333;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.privacy-policy h2 {
  font-size: 2rem;
  color: #754ef9;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-policy p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}

.huawei-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.huawei-btn:hover {
  background-color: #202020;
  transform: translateY(-2px);
}

.huawei-btn:active {
  transform: translateY(0);
}

.store-icon {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
}
