/* app/assets/stylesheets/privacy.css */
.privacy-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, #007bff, #00ddeb);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.privacy-container h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.privacy-container h2 {
  font-size: 24px;
  color: #fff;
  margin: 20px 0 10px;
}

.privacy-container p {
  font-size: 18px;
  color: #f0f8ff;
  margin-bottom: 15px;
}

.privacy-container ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.privacy-container ul li {
  font-size: 16px;
  color: #f0f8ff;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.privacy-container ul li:before {
  content: "🌟";
  position: absolute;
  left: 0;
  color: #ffeb3b;
}

.actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}


.clsFlash.notice {
  background-color: #d4edda;
  color: #28a745;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.clsFlash.alert {
  background-color: #f8d7da;
  color: #dc3545;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}
