:root {
  --bg:#f7f9fc;
  --dark:#0b2d52;
  --accent:#ff7a18;
  --text:#2b3445;
  --white:#ffffff;
}

.privacy-advanced {
  background: var(--bg);
  padding: 80px 0;
}

/* HEADER */
.pp-header {
  text-align: center;
  margin-bottom: 50px;
}

.pp-header h1 {
  font-size: 42px;
  color: var(--dark);
}

/* LAYOUT */
.pp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* SIDEBAR */
.pp-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.pp-sidebar ul {
  list-style: none;
  padding: 0;
}

.pp-sidebar li {
  padding: 12px;
  margin-bottom: 8px;
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.pp-sidebar li.active,
.pp-sidebar li:hover {
  background: var(--accent);
  color: #fff;
}

/* CONTENT */
.pp-content {
  display: grid;
  gap: 25px;
}

/* CARD */
.pp-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.pp-card:hover {
  transform: translateY(-5px);
}

/* LIST */
.pp-card ul {
  padding-left: 20px;
}

/* HIGHLIGHT */
.pp-card.highlight {
  background: linear-gradient(135deg, var(--accent), #ffb347);
  color: white;
}

/* RESPONSIVE */
@media(max-width:900px){
  .pp-layout {
    grid-template-columns: 1fr;
  }
}

.privacy-advanced {
  background: var(--bg);
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.pp-header {
  text-align: center;
  margin-bottom: 50px;
}

.pp-header h1 {
  font-size: 42px;
  color: var(--dark);
}

.pp-header p {
  color: var(--text);
}

/* LAYOUT */
.pp-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

/* SIDEBAR */
.pp-sidebar {
  position: sticky;
  top: 100px;
}

.pp-sidebar ul {
  list-style: none;
  padding: 0;
}

.pp-sidebar li {
  padding: 12px 15px;
  margin-bottom: 8px;
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  color: var(--text);
  font-weight: 500;
}

.pp-sidebar li:hover,
.pp-sidebar li.active {
  background: var(--accent);
  color: #fff;
}

/* CONTENT */
.pp-content {
  display: grid;
  gap: 25px;
}

/* CARDS */
.pp-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
  border-left: 4px solid transparent;
}

.pp-card:hover {
  transform: translateY(-5px);
  border-left: 4px solid var(--accent);
}

/* HEADINGS */
.pp-card h2 {
  color: var(--dark);
  margin-bottom: 10px;
}

/* TEXT */
.pp-card p {
  color: var(--text);
  line-height: 1.6;
}

/* LIST */
.pp-card ul {
  padding-left: 20px;
}

.pp-card ul li {
  margin-bottom: 6px;
  list-style: "✔ ";
  color: var(--text);
}

/* HIGHLIGHT */
.pp-card.highlight {
  background: linear-gradient(135deg, var(--accent), #ffb347);
  color: #fff;
}

.pp-card.highlight h2,
.pp-card.highlight p {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pp-layout {
    grid-template-columns: 1fr;
  }

  .pp-sidebar {
    position: relative;
  }

  .pp-header h1 {
    font-size: 30px;
  }
}


.sitemap-page .pp-card ul li {
  margin-bottom: 8px;
}

.sitemap-page .pp-card a {
  text-decoration: none;
  color: var(--text);
  transition: 0.3s;
}

.sitemap-page .pp-card a:hover {
  color: var(--accent);
  padding-left: 6px;
}

/* grid feel */
.sitemap-page .pp-content {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* hover glow */
.sitemap-page .pp-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}