.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.privacy-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--light);
}

.privacy-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.privacy-content {
  background: rgba(37, 37, 37, 0.7);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(108, 99, 255, 0.1);
  backdrop-filter: blur(10px);
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.privacy-section p, .privacy-section ul {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-section ul {
  padding-left: 1.5rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
}

.privacy-logo {
  max-width: 150px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 10px rgba(108, 99, 255, 0.3));
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .privacy-container {
    padding: 3rem 1.5rem;
  }
  
  .privacy-header h1 {
    font-size: 2rem;
  }
  
  .privacy-content {
    padding: 2rem;
  }

  .privacy-logo {
    max-width: 120px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    padding: 2rem 1rem;
  }
  
  .privacy-content {
    padding: 1.5rem;
  }
  
  .privacy-section h2 {
    font-size: 1.3rem;
  }

  .privacy-logo {
    max-width: 100px;
    border-radius: 14px;
  }
}