*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Montserrat,sans-serif;
  background:#F4F1E8;
  color:#16352f;
}

.legal-nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:center;
  gap:35px;
  padding:12px 60px;
  background:rgba(4,47,39,.92);
  backdrop-filter:blur(12px);
  z-index:999;
}

.legal-nav a{
  color:#EDE9DD;
  text-decoration:none;
  font-weight:500;
  font-size:15px;
}

.legal-page{
  width:88%;
  max-width:1000px;
  margin:0 auto;
  padding:130px 0 90px;
}

.legal-page h1{
  color:#042f27;
  font-size:62px;
  font-weight:300;
  line-height:1.05;
  margin-bottom:18px;
}

.updated{
  color:#6c716d;
  margin-bottom:42px;
}

.legal-page section{
  background:#fff;
  border-radius:28px;
  padding:32px;
  margin-bottom:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.legal-page h2{
  color:#042f27;
  font-size:28px;
  font-weight:500;
  margin-bottom:14px;
}

.legal-page p,
.legal-page li{
  color:#4b5b55;
  line-height:1.9;
}

.legal-page ul{
  padding-left:22px;
}

.legal-page a{
  color:#042f27;
  font-weight:700;
}

.data-protection-section{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.data-protection-section div{
  flex:1;
}

.ico-logo{
  width:120px;
  height:auto;
  flex:0 0 auto;
}

@media(max-width:800px){
  .legal-nav{
    flex-wrap:wrap;
    gap:18px;
    padding:12px 20px;
  }

  .legal-page h1{
    font-size:42px;
  }

  .data-protection-section{
    align-items:flex-start;
    flex-direction:column;
  }

  .ico-logo{
    width:96px;
  }
}
