/* Privacy Policy Page Styling - Looksyy Theme */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5; /* Whitesmoke background */
  color: #2d001f; /* Deep bark text for readability */
  margin: 0;
  padding: 0;
}


.privacy-container {
  max-width: 850px;
  margin: 4rem auto;
  padding: 2.5rem 3rem;
  background-color: #2d001f; /* Deep bark container */
  box-shadow: 0 0 30px rgba(144, 0, 100, 0.3); /* Plum glow */
  border-radius: 22px;
  line-height: 1.8;
  color: #f5e6f7; /* Soft lavender for text */
  transition: all 0.3s ease-in-out;
}

.privacy-container h1 {
  font-size: 2.5rem;
  color: #ffb7ef; /* Lavender pink */
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

.privacy-container section {
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease;
}

.privacy-container section:hover {
  transform: translateY(-3px);
}

.privacy-container h2 {
  font-size: 1.6rem;
  color: #ff8ad9; /* Softer neon pink */
  margin-bottom: 0.8rem;
  border-left: 4px solid #ffc6f4; /* Pastel pink border */
  padding-left: 0.7rem;
}

.privacy-container p {
  font-size: 1.05rem;
  color: #f5f5f5; /* Soft white */
}

.privacy-container a {
  color: #ff99cc; /* Light pink */
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.privacy-container a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 600px) {
  .privacy-container {
      padding: 2rem 2rem;
      margin: 3rem 1.5rem;
  }

  .privacy-container h1 {
      font-size: 2rem;
  }

  .privacy-container h2 {
      font-size: 1.3rem;
  }
}
