:root{
  --text:#121212;
  --muted:#555;
  --bg:#fff;
  --max:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
  font-size:18px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}
.site-header{
  width:min(var(--max), calc(100% - 64px));
  margin:0 auto;
  padding:48px 0 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}
.brand img{display:block;width:146px;height:auto}
.back-link{font-weight:700;text-decoration:none;font-size:18px;white-space:nowrap}
.back-link:hover{text-decoration:underline}
main{width:min(var(--max), calc(100% - 64px));margin:0 auto 72px}
.hero{text-align:center;padding:24px 7% 28px}
.hero h1{font-size:22px;line-height:1.35;margin:0 0 26px;font-weight:700}
.hero p{margin:0;text-align:left}
.policy-meta{margin:4px 0 32px}
.policy-meta h2{font-size:20px;line-height:1.35;margin:0 0 4px;text-decoration:underline}
.policy-meta p{margin:0;font-weight:700}
.content p{margin:0 0 24px;text-align:justify}
.content h2{font-size:18px;line-height:1.35;margin:36px 0 14px;font-weight:700;text-transform:uppercase}
.content h3{font-size:18px;line-height:1.35;margin:26px 0 10px;font-weight:700}
.content ul{margin:0 0 24px;padding:0;list-style:none}
.content li{position:relative;padding-left:18px;margin:0 0 14px;text-align:justify}
.content li::before{content:"-";position:absolute;left:0;top:0}
.contact-card{margin:8px 0 32px}
.contact-card p{margin:0 0 3px;text-align:left}
.contact-card .label{font-weight:700;margin-top:14px}
strong{font-weight:700}
@media (max-width:760px){
  body{font-size:16px;line-height:1.6}
  .site-header,main{width:min(100% - 36px,var(--max))}
  .site-header{padding:28px 0 20px;gap:18px}
  .brand img{width:145px}
  .back-link{font-size:15px}
  .hero{padding:18px 0 26px}
  .hero h1{font-size:20px;margin-bottom:18px}
  .content p,.content li{text-align:left}
  .content h2{font-size:17px;margin-top:32px}
  .policy-meta h2{font-size:18px}
}
@media (max-width:420px){
  .site-header{align-items:flex-start}
  .brand img{width:125px}
  .back-link{font-size:14px;padding-top:6px}
}
@media print{
  .site-header,main{width:100%;max-width:none}
  .site-header{padding-top:0}
  body{font-size:12pt}
  .back-link{display:none}
}
.lgpd-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 35px 0;
}
.lgpd-button {
    display: inline-block;
    padding: 14px 30px;
    background-color: #cc0000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}
.lgpd-button:hover {
    background-color: #a90000;
    color: #ffffff;
    transform: translateY(-1px);
}
.lgpd-button:focus {
    outline: 3px solid rgba(204, 0, 0, 0.25);
    outline-offset: 3px;
}
