body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 40px;
  color: #facc15;
}

.header p {
  font-size: 18px;
  color: #cbd5e1;
}

.image-section {
  text-align: center;
  margin: 20px 0;
}

.image-section img {
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.content h2 {
  color: #38bdf8;
  margin-top: 20px;
}

.content p, .content ul {
  color: #e2e8f0;
  font-size: 16px;
}

ul {
  padding-left: 20px;
}

blockquote {
  margin: 20px 0;
  padding: 15px;
  background: #1e293b;
  border-left: 5px solid #facc15;
  font-style: italic;
}

footer {
  text-align: center;
  margin-top: 30px;
  color: #94a3b8;
  font-size: 14px;
}