/* Policy Pages Specific Styling */

.policy-main {
  max-width: 900px;
  margin: 50px auto 80px auto;
  padding: 40px 30px;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(105, 48, 195, 0.2);
  font-size: 1.1rem;
  color: #2e2e2e;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.03rem;
}

.policy-header {
  text-align: center;
  margin-bottom: 40px;
}

.policy-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6930c3;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  user-select: none;
}

.policy-header p {
  font-size: 1.15rem;
  color: #555;
  font-weight: 500;
  margin-top: 4px;
  font-style: italic;
  user-select: none;
}

.policy-content p {
  margin-bottom: 18px;
  line-height: 1.85;
}

.policy-content ul {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 25px;
  color: #444;
}

.policy-content ul li {
  margin-bottom: 14px;
  font-size: 1.05rem;
  transition: color 0.25s ease;
  cursor: default;
}

.policy-content ul li:hover {
  color: #6930c3;
  font-weight: 600;
}

.policy-content a {
  color: #6930c3;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy-content a:hover {
  color: #5e60ce;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .policy-main {
    margin: 30px 20px 60px 20px;
    padding: 30px 20px;
    font-size: 1rem;
  }
  .policy-header h2 {
    font-size: 2rem;
  }
  .policy-header p {
    font-size: 1rem;
  }
}
