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

html, body{
    height: 100%;
    scroll-behavior: smooth;
    margin: 0;
    background-color: #1f2421;
}

.privacy-page{
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  color: rgba(245,245,245,0.85);
  font-weight: 200;
  line-height: 1.7;
  background-color: #1f2421;
}

.privacy-page h1{
  text-align:center;
  font-size:60px;
  color:#49A078;
  margin-bottom:60px;
  font-weight:200;
}

.privacy-page h2{
  color:#9cc5a1;
  margin-top:50px;
  margin-bottom:15px;
  font-weight:300;
  letter-spacing:1px;
}

.privacy-page p{
  margin-bottom:16px;
}

.privacy-page ul{
  padding-left:20px;
  margin-bottom:20px;
}

.privacy-page li{
  margin-bottom:8px;
}

.privacy-page a{
  color:#9cc5a1;
}

.privacy-page a:hover{
  color:#49A078;
}

.thankyou-btn{
  display:block;          /* schimbă din inline-block */
  margin: 30px auto 0;    /* centrează orizontal */
  width: fit-content;

  padding:12px 28px;
  border-radius:999px;
  text-decoration:none;
  background:#49A078;
  color:white;
  font-weight:300;
  transition:.3s;
}

.thankyou-btn:hover{
  transform:translateY(-3px);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.4),
    0 0 25px rgba(73,160,120,0.4);
}

@media (max-width: 700px){
  .privacy-page h1{
    font-size: 30px;
  }

}