/* =========================================================
   Privacy Policy Page Styles
   Black Background, White Text Theme
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000000;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =========================================================
   Navbar
   ========================================================= */
.navbar {
  background-image: linear-gradient(170deg, #000000 0%, #131313 100%);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-mentacy-logo {
  width: 130px;
  height: auto;
  margin-left: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar-toggler {
  border: none;
  box-shadow: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler svg {
  width: 26px;
  height: 26px;
}

/* =========================================================
   Privacy Container
   ========================================================= */
.privacy-container {
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  background: #000000;
}

.privacy-content {
  width: 100%;
}

/* =========================================================
   Privacy Title & Header
   ========================================================= */
.privacy-title {
  font-family: "Lato", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.privacy-updated {
  font-size: 0.95rem;
  color: #a0a0a0;
  margin-bottom: 40px;
  font-style: italic;
}

.privacy-intro {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.privacy-intro p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
}

/* =========================================================
   Privacy Sections
   ========================================================= */
.privacy-section {
  margin-bottom: 45px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-family: "Lato", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.subsection-title {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 25px;
  margin-bottom: 15px;
}

.privacy-section p {
  font-size: 1rem;
  color: #d0d0d0;
  margin-bottom: 16px;
  line-height: 1.8;
}

.privacy-section strong {
  color: #ffffff;
  font-weight: 600;
}

.privacy-section em {
  color: #b0b0b0;
  font-style: italic;
}

/* =========================================================
   Privacy Lists
   ========================================================= */
.privacy-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.privacy-list li {
  font-size: 1rem;
  color: #d0d0d0;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.privacy-list li::before {
  content: "•";
  color: #22c55e;
  font-size: 1.5rem;
  position: absolute;
  left: 8px;
  top: -2px;
  font-weight: bold;
}

/* =========================================================
   Contact Information
   ========================================================= */
.contact-info {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #22c55e;
  padding: 20px 25px;
  margin-top: 20px;
  border-radius: 4px;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-link {
  color: #22c55e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #1ed96a;
  text-decoration: underline;
}

/* =========================================================
   Back Link
   ========================================================= */
.privacy-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: #22c55e;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.back-link:hover {
  color: #1ed96a;
  transform: translateX(-5px);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  padding: 20px 40px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-icons a {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-icons a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.footer-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-icons .icon-youtube {
  width: 28px;
  height: 28px;
}

/* =========================================================
   Responsive Design
   ========================================================= */
@media (max-width: 768px) {
  .privacy-container {
    padding: 40px 25px 60px;
  }

  .privacy-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .subsection-title {
    font-size: 1.15rem;
  }

  .privacy-intro p,
  .privacy-section p,
  .privacy-list li {
    font-size: 0.95rem;
  }

  .navbar-mentacy-logo {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    padding: 30px 20px 50px;
  }

  .privacy-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .subsection-title {
    font-size: 1.05rem;
  }

  .privacy-intro p,
  .privacy-section p,
  .privacy-list li {
    font-size: 0.9rem;
  }

  .contact-info {
    padding: 15px 20px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

