* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f7f7f7;
  color: #333;
}

/* Header */
header {
  background: linear-gradient(135deg, #0943e2, #fad0c4);
  padding: 25px;
  text-align: center;
  color: #fff;
}

header h1 {
  font-size: 32px;
}

header p {
  opacity: 0.9;
}

/* Hero */
.hero {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff61ff;
  color: #fcfbfb;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #88e850;
}

/* Products */
.products {
  padding: 40px 20px;
  text-align: center;
}

.products h2 {
  margin-bottom: 30px;
}

.product-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 12px;
  height: 150px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 5px;
}

/* Why us */
.why {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}

.why-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.why-box div {
  text-align: center;
}

.why-box span {
  font-size: 40px;
  color: #ff8661;
}

/* Footer */
footer {
  background: #938cf0;
  color: #fafafa;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}