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

.blog-post {
  max-width: 1600px;
  margin: 50px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

h1, h2, h3 {
  font-weight: bold;
  text-shadow: 2px 2px 4px black;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #ffcc00;
  margin-bottom: 10px;
}

.banner-content p {
  text-align: center;
}

h2 {
  font-size: 2rem;
  color: #ffcc00;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
  margin-top: 30px;
}

h3 {
  font-size: 1.5rem;
  color: #ffcc00;
}

p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 20px;
}

hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 30px 0;
}

blockquote {
  border-left: 5px solid #ffcc00;
  padding: 10px 20px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.1);
  font-style: italic;
  color: #ffcc00;
}

a {
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ffea70;
}

img {
  max-width: 100%;
  max-height: 80vh;
  height: auto;
}

figcaption {
  font-size: 1.2rem;
  color: #ddd;
  text-align: center;
}

figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .blog-post {
    width: 90%;
    padding: 15px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  p { font-size: 1rem; }
}
