/* GDPR Pages Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #181d27;
  background: #cfcfcf;
  padding: 0;
  margin: 0;
}

h1 {
  font-family: inherit;
  font-size: 32px;
  font-weight: 600;
  color: #181d27;
  margin: 0 0 32px 0;
  letter-spacing: -0.01em;
}

h2 {
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  color: #181d27;
  margin: 32px 0 16px 0;
}

h3 {
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: #181d27;
  margin: 24px 0 12px 0;
}

p {
  margin: 0 0 16px 0;
  font-size: 15px;
  color: #555555;
}

ul, ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
  color: #555555;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
  color: #181d27;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

th {
  background: rgba(0, 0, 0, 0.04);
  font-weight: 600;
  color: #181d27;
}

.info-block {
  background: rgba(0, 0, 0, 0.035);
  border-left: 3px solid rgba(0, 0, 0, 0.18);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 8px;
}

.info-block p {
  margin: 4px 0;
  font-size: 14px;
}

.wrap {
  width: 70vw;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 20px 80px;
  text-align: left;
}

.gdpr-close {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(195, 195, 195, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #181d27;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.gdpr-close:hover {
  background: rgba(195, 195, 195, 0.96);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }
  
  h2 {
    font-size: 18px;
  }
  
  .wrap {
    width: min(92vw, 980px);
    padding: 40px 16px 60px;
  }

  .gdpr-close {
    left: 12px;
    top: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 22px;
  }
  
  h2 {
    font-size: 16px;
  }
  
  p, li {
    font-size: 14px;
  }
  
  .wrap {
    width: 92vw;
    padding: 28px 12px 48px;
  }
}
