/* ==============================
   Privacy Policy Styles – Responsive & Modern Colors
============================= */

/* ==============================
   Page Background
============================= */
.main-wrapper {
  background: #f3f6fb; /* soft light background */
  min-height: 100vh;
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ==============================
   Hero Header
============================= */
.privacy-policy-header {
  background: linear-gradient(135deg, #6C5DD3, #4C2DB8); /* vibrant modern gradient */
  color: #ffffff;
  padding: 6rem 1rem 8rem;
  text-align: center;
}

.privacy-policy-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff; /* header title color */
}

.privacy-policy-header p {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  opacity: 0.9;
  color: #f0ebff; /* softer subtitle text */
}

/* ==============================
   Content Card
============================= */
.privacy-policy-content {
  max-width: 900px;
  width: calc(100% - 2rem);
  margin: -5rem auto 3rem;
  background: #fff;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  color: #2C2C3A; /* updated modern content text */
  line-height: 1.8;
  font-size: clamp(0.95rem, 2vw, 1rem);
}

/* Section Headings */
.privacy-policy-content h3 {
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  color: #5A3DD1; /* deep purple heading */
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #D9D4FF; /* light accent underline */
}

/* Paragraphs */
.privacy-policy-content p {
  margin-bottom: 1rem;
  color: #2C2C3A;
}

.privacy-policy-content ul {
  padding-left: 1.5rem; /* spacing from the left edge */
  margin-bottom: 1rem;
  list-style-type: disc; /* solid dots */
  list-style-position: inside; /* dots inside the padding */
}

.privacy-policy-content li {
  margin-bottom: 0.5rem;
  color: #2C2C3A;
}
/* Strong / Emphasis */
.privacy-policy-content strong {
  color: #5A3DD1;
  word-break: break-word;
}

/* Links */
.privacy-policy-content a {
  color: #5A3DD1; /* deep purple links */
  text-decoration: underline;
}

/* ==============================
   Responsive Adjustments
============================= */

/* Mobile */
@media (max-width: 768px) {
  .privacy-policy-header {
    padding: 4.5rem 1rem 6rem;
  }

  .privacy-policy-header h2 {
    font-size: 2rem;
  }

  .privacy-policy-content {
    margin-top: -4rem;
    padding: 28px 24px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .privacy-policy-content {
    margin-top: -6rem;
  }
}

/* Large Screens */
@media (min-width: 1440px) {
  .privacy-policy-content {
    max-width: 1000px;
  }
}
