/**
 * privacy.css - Style TYLKO dla strony polityki prywatności
 */

.privacy-section {
  background: #ebeffa;
  padding: 120px 0 64px 0; /* Więcej padding-top dla widoczności headera */
  position: relative;
  z-index: 10;
  min-height: calc(100vh - 80px);
}

.privacy-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.privacy-section h1 {
  text-align: center;
  color: #0a0f19;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
}

.privacy-date {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 4rem;
}

.privacy-content {
  max-width: 100%;
  margin: 0 auto;
}

.privacy-content h2 {
  color: #0a0f19;
  font-size: 1.8rem;
  margin: 3rem 0 1rem 0;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content h3 {
  color: #0a0f19;
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem 0;
  font-weight: 600;
}

.privacy-content p {
  color: #334155;
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.privacy-content ul {
  margin: 1rem 0 1rem 2rem;
  color: #334155;
}

.privacy-content li {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.privacy-content a {
  color: #0b1e3f;
  text-decoration: underline;
  font-weight: 600;
}

.privacy-content a:hover {
  color: #6fb7ff;
}

/* WYMUŚ WIDOCZNOŚĆ HEADERA */
.rs-header {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.reg-separator {
  border: none;
  height: 1px;
  background-color: var(--brand-blue);
  margin: -2rem 0 1.5rem 0;
  max-width: 1500px;
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 100px 0 48px 0;
  }
  
  .privacy-section h1 {
    font-size: 1.8rem;
  }
  
  .privacy-content h2 {
    font-size: 1.3rem;
  }
  
  .privacy-content h3 {
    font-size: 1.1rem;
  }
  
  .privacy-content p,
  .privacy-content li {
    font-size: 1rem;
  }
}