/* Slide 7 Privacy Policy Styling */
.privacy-container {
  max-width: 1100px;
  height: 510px;
  margin: 90px auto;
  padding: 20px 55px;

  /* Frosted glass look */
  background: rgba(20, 20, 40, 0.7);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  border: 1.5px solid rgba(163, 91, 190, 0.5);
  border-radius: 12px;
  box-shadow: 15px 15px 16.5px rgba(0, 0, 0, 0.2),
              inset 0 0 4.5px #427A78;

  font-family: 'Inter', sans-serif;
  color: #e0e0e0;
  line-height: 1.85;
  overflow-y: auto;
  overflow-x: hidden;

  /* Edge + Firefox scrollbars */
  scrollbar-width: thin;
  scrollbar-color: rgba(163, 91, 190, 0.6) transparent;
}

/* WebKit scrollbar (Edge/Chrome/Safari) */
.privacy-container::-webkit-scrollbar {
  width: 8px;
}
.privacy-container::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(163,91,190,0.8), rgba(84,51,163,0.8));
  border-radius: 8px;
}
.privacy-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(163,91,190,1), rgba(84,51,163,1));
}
.privacy-container::-webkit-scrollbar-track {
  background: transparent;
}

/* Title */
.privacy-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(
    90deg,
    rgba(163, 91, 190, 1) 10.8%,
    rgba(84, 51, 163, 1) 58.3%,
    rgba(36, 28, 94, 1) 94.3%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

/* Effective Date */
.privacy-effective-date {
  font-family: 'Inter', sans-serif;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #bbb;
  letter-spacing: -0.3px;
  margin-top: -32px;
}

/* Section Headings */
.privacy-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 28px 0 14px;
  background: linear-gradient(
    90deg,
    rgba(163, 91, 190, 1) 10.8%,
    rgba(84, 51, 163, 1) 58.3%,
    rgba(36, 28, 94, 1) 94.3%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-left: 4px solid rgba(163, 91, 190, 0.7);
  padding-left: 12px;
}

/* Lists */
.privacy-list {
  margin: 0 0 18px 22px;
  padding: 0;
  list-style: disc;
}
.privacy-list li {
  font-size: 1.08rem;
  margin-bottom: 12px;
  color: #e0e0e0;
}

/* Paragraphs */
.privacy-container p {
  font-size: 1.08rem;
  margin-bottom: 20px;
  color: #e0e0e0;
}

/* Security Disclosure Heading */
.privacy-disclosure-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem; /* same as .privacy-heading */
  font-weight: 700;
  text-align: center;
  margin: 32px 0 14px;
  background: linear-gradient(
    90deg,
    rgba(163, 91, 190, 1) 10.8%,
    rgba(84, 51, 163, 1) 58.3%,
    rgba(36, 28, 94, 1) 94.3%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

/* Security Disclosure Paragraph */
.privacy-disclosure {
  text-align: center;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  font-style: italic;
  color: #dcdcdc;
  max-width: 90%;
  line-height: 1.6;
}

/* Email Label */
.privacy-email-label {
  color: #dcdcdc; /* white for "Email:" */
  font-weight: 500;
  margin-right: 4px;
}

/* Email Link */
.privacy-email {
  color: rgba(163, 91, 190, 1); /* purple */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.privacy-email:hover {
  color: rgba(84, 51, 163, 1); /* darker purple on hover */
  text-decoration: underline;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1024px) {
  .privacy-container { height: 450px; padding: 26px 40px; }
  .privacy-title { font-size: 2.2rem; }
  .privacy-heading, .privacy-disclosure-heading { font-size: 1.3rem; }
  .privacy-container p, .privacy-list li { font-size: 1.05rem; }
  .privacy-disclosure { font-size: 1rem; margin: 25px auto; }
}

@media (max-width: 768px) {
  .privacy-container { 
    height: 400px; 
    padding: 22px; 
    max-width: 100%;   /* makes box narrower */
    margin: 150px 50px; /* adds space top/bottom + keeps center horizontally */
  }
  .privacy-title { font-size: 2rem; margin-bottom: 50px;}
  .privacy-heading, .privacy-disclosure-heading { font-size: 1.2rem; }
  .privacy-container p, .privacy-list li { font-size: 1rem; line-height: 1.8; }
  .privacy-disclosure { font-size: 0.95rem; margin: 22px auto; line-height: 1.5; }
}

/* Responsive: Small Phones */
@media (max-width: 480px) {
  .privacy-container {
    height: 80vh;         /* take up 90% of phone screen height */
    padding: 20px;
    margin: 85px auto;    /* reduce top margin so it fills more */
    overflow-y: auto;
    overflow-x: hidden;
  }

  .privacy-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .privacy-effective-date {
    font-size: 0.85rem;
    font-weight: 500;
    color: #cfcfcf;
    margin: 6px 0 14px;
    text-align: center;
  }

  .privacy-heading,
  .privacy-disclosure-heading {
    font-size: 1.1rem;
  }

  .privacy-container p,
  .privacy-list li {
    font-size: 1rem;
    line-height: 1.7;
  }

  .privacy-disclosure {
    font-size: 0.95rem;
    margin: 24px auto;
    line-height: 1.5;
  }
}
