
html {
  scroll-behavior: smooth;
}
.pp-wrapper {
  max-width: 1200px;
  margin-top: 100px;
  margin-left: 50px;
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
}

.pp-sidebar {
  flex: 1;
  max-width: 240px;
  position: sticky;
  top: 80px;
}

.pp-sidebar h3 {
  font-size: 17px;
  margin-bottom: 15px;
  color: #fefefe;
  padding-left: 10px;
  border-left: 4px solid #8a5eff;
}

.pp-sidebar ul {
  list-style: none;
  padding-left: 10px;
}

.pp-sidebar ul li {
  margin: 10px 0;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: #bbb;
  cursor: pointer;
  transition: 0.3s;
}

.pp-sidebar ul li:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pp-content {
  flex: 3;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.pp-header {
  text-align: center;
  margin-bottom: 30px;
}

.pp-header h1 {
  font-size: 38px;
  background: linear-gradient(90deg, #f857a6, #ff5858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}

.pp-header p {
  font-size: 14px;
  color: #aaa;
  margin-top: 8px;
}

.pp-section {
  margin-bottom: 40px;
}

.pp-section h2 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 12px;
}

.pp-section p {
  color: #ccc;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 12px;
}
a {
  text-decoration: none;
  color: whitesmoke;
}

@media (max-width: 768px) {
  .pp-wrapper {
    flex-direction: column;
    gap: 20px;
    margin-right: 20px;
  }

  .pp-sidebar {
    max-width: 100%;
    position: static;
  }

  .pp-content {
    padding: 30px 20px;
  }

  .pp-header h1 {
    font-size: 30px;
  }
}
