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

body {
  min-height: 100vh;
  background: radial-gradient(circle at bottom left, #ffd6e8, #ffffff 45%);
  color: #111;
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
}

.logo {
  height: 60px;
}

.contact-btn {
  background: #e5e5e5;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}


.hero {
  text-align: center;
  padding: 40px 20px;
}

.gift {
  width: 160px;
  margin-bottom: 20px;
}

.small-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 15px;
}

h1 span {
  color: #ff6b6b;
}

.desc {
  max-width: 620px;
  margin: 0 auto 30px;
  color: #555;
  line-height: 1.6;
}


.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 25px;
  margin-bottom: 35px;
  font-size: 15px;
}


.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  color: #666;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 60px;
  background: #ccc;
}


.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-weight: 500;
}


@media (max-width: 600px) {
  .features {
    flex-direction: column;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
}
