.page-container {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.page-content {
  max-width: 800px;
  background: rgba(11, 31, 58, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px;
  color: white;
}
.page-header {
  text-align: center;
  margin-bottom: 40px;
}
.page-header h1 {
  font-size: 42px;
  color: #00a8ff;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(0, 168, 255, 0.5);
}
.page-header .icon {
  font-size: 60px;
  color: #00a8ff;
  margin-bottom: 15px;
}
.page-text {
  line-height: 1.8;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}
.page-text h2 {
  color: #00a8ff;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 168, 255, 0.3);
  padding-bottom: 10px;
}
.page-text p {
  margin-bottom: 15px;
}
.page-text ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.page-text li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}
.important-note {
  background: rgba(0, 168, 255, 0.1);
  border: 1px solid rgba(0, 168, 255, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}
.important-note p {
  margin: 0;
  color: #00a8ff;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00a8ff;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 30px;
  transition: color 0.3s;
}
.back-btn:hover {
  color: #0056b3;
}