/* policy.css — cleaner, modern legal page styling */

.policy-wrap{
  width: min(920px, calc(100% - 28px));
  margin: 26px auto;
  padding: 26px 22px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
}

.policy-header{
  text-align: center;
  margin-bottom: 18px;
}

.policy-header .logo img{
  max-width: 110px;
  height: auto;
  margin: 0 auto 10px auto;
  display: block;
  border-radius: 14px;
}

.policy-header h1{
  font-size: 2rem;
  color: #111;
  margin: 6px 0 6px 0;
  font-weight: 900;
}

.policy-updated{
  color: #666;
  margin: 0;
  font-size: 1rem;
}

.policy-content{
  color: #222;
  line-height: 1.75;
  font-size: 1.02rem;
}

.policy-content h2{
  margin-top: 22px;
  font-size: 1.35rem;
  color: #111;
  font-weight: 900;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(125, 207, 182, .65); /* mint accent */
}

.policy-content p{
  margin: 10px 0;
  color: #2a2a2a;
}

.policy-content ul{
  margin: 10px 0 10px 0;
  padding-left: 0;
  list-style: none;
}

.policy-content li{
  margin: 8px 0;
  padding-left: 26px;
  position: relative;
  color: #2a2a2a;
}

.policy-content li::before{
  content: "•";
  position: absolute;
  left: 10px;
  top: 0;
  color: #7dcfb6; /* your mint */
  font-weight: 900;
}

.policy-content a{
  color: #1a73e8;
  text-decoration: none;
  font-weight: 700;
}

.policy-content a:hover{
  text-decoration: underline;
}

/* Keep base.html body styles from breaking */
body{
  background: #f6f7f8;
}
