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

body{
  font-family:'Poppins',sans-serif;
  background:#f8f8f8;
  color:#333;
  line-height:1.8;
}

header{
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:1000;
}

nav{
  max-width:1200px;
  margin:auto;
  padding:18px 20px;
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

nav a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#0f766e;
}

.legal-hero{
  background:linear-gradient(rgba(15,118,110,.8),rgba(15,118,110,.8)),
  url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80');
  background-size:cover;
  background-position:center;
  color:#fff;
  text-align:center;
  padding:100px 20px;
}

.legal-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:60px;
  margin-bottom:10px;
}

.legal-hero p{
  font-size:18px;
}

.legal-content{
  max-width:1000px;
  margin:50px auto;
  padding:40px;
  background:#fff;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.legal-content h2{
  margin-top:30px;
  margin-bottom:15px;
  color:#0f766e;
}

.legal-content p{
  margin-bottom:15px;
}

.legal-content ul{
  padding-left:25px;
}

.legal-content li{
  margin-bottom:8px;
}

footer{
  background:#111827;
  color:#fff;
  text-align:center;
  padding:30px 20px;
}

.footer-links{
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
}

.footer-links a:hover{
  text-decoration:underline;
}

.floating-whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  text-decoration:none;
  box-shadow:0 5px 15px rgba(0,0,0,.25);
  z-index:9999;
}

.floating-whatsapp:hover{
  transform:scale(1.08);
}

@media(max-width:768px){

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

  .legal-content{
    margin:25px 15px;
    padding:25px;
  }

  nav{
    gap:12px;
  }

  nav a{
    font-size:14px;
  }
}
