*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  min-height:100vh;
  font-family:Arial, Helvetica, sans-serif;
  background:linear-gradient(135deg,#ecfff2,#ffffff);
  color:#102015;
}

.homeBtn{
  position:fixed;
  top:18px;
  left:18px;
  width:54px;
  height:54px;
  border-radius:50%;
  background:#ffffff;
  color:#111111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  text-decoration:none;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  z-index:999999;
}

.closeinPage{
  width:100%;
  min-height:100vh;
  padding:30px 18px;
}

.closeinHero{
  max-width:780px;
  margin:70px auto 26px;
  padding:40px 28px;
  border-radius:30px;
  background:#ffffff;
  box-shadow:0 20px 50px rgba(0,0,0,.10);
  text-align:center;
}

.topPill{
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  background:#e9f8ee;
  color:#1b8f3a;
  font-weight:900;
  font-size:13px;
  margin-bottom:18px;
}

.closeinHero h1{
  font-size:38px;
  margin-bottom:8px;
}

.closeinHero h2{
  font-size:28px;
  margin-bottom:14px;
  color:#1b8f3a;
}

.closeinHero p{
  max-width:620px;
  margin:0 auto 22px;
  line-height:1.6;
  color:#4d5b52;
}

.heroActions{
  margin:20px 0 26px;
}

.dashboardBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#1b8f3a;
  color:#ffffff;
  text-decoration:none;
  border-radius:16px;
  padding:15px 24px;
  font-weight:900;
  opacity:1;
  filter:none;
  pointer-events:auto;
  cursor:pointer;
  box-shadow:0 12px 25px rgba(27,143,58,.28);
}

.dashboardBtn:hover{
  background:#146f2d;
  transform:translateY(-2px);
}

.questionCard{
  margin:0 auto;
  max-width:620px;
  padding:24px;
  background:#f7fbf8;
  border:1px solid #dceee2;
  border-radius:24px;
  text-align:left;
}

.questionCard label{
  display:block;
  font-weight:900;
  margin-bottom:12px;
}

.questionCard textarea{
  width:100%;
  min-height:150px;
  resize:vertical;
  padding:16px;
  border-radius:16px;
  border:1px solid #cfe4d6;
  font-size:15px;
  outline:none;
}

.questionCard button{
  width:100%;
  margin-top:14px;
  padding:15px;
  border:none;
  border-radius:16px;
  background:#111111;
  color:#ffffff;
  font-weight:900;
  cursor:pointer;
}

.questionCard small{
  display:block;
  margin-top:12px;
  color:#68736c;
  line-height:1.4;
}

.memberPanel{
  max-width:780px;
  margin:0 auto;
  padding:24px;
  border-radius:26px;
  background:#102015;
  color:#ffffff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.memberPanel p{
  color:#cfe5d6;
  margin-top:6px;
}

.rewardsButton{
  background:#ffffff;
  color:#102015;
  text-decoration:none;
  padding:14px 18px;
  border-radius:14px;
  font-weight:900;
  white-space:nowrap;
}

@media(max-width:700px){
  .closeinHero{
    margin-top:78px;
    padding:30px 18px;
  }

  .closeinHero h1{
    font-size:30px;
  }

  .closeinHero h2{
    font-size:24px;
  }

  .memberPanel{
    flex-direction:column;
    text-align:center;
  }

  .rewardsButton{
    width:100%;
    text-align:center;
  }
}