.blog-container {
  margin-top: 10px;
}
/* General Blog Post Style */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Arial", sans-serif;
  background-color: #f9f9f9;
  color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading Style */
.blog-post h2 {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-post h3 {
  font-size: 24px;
  color: #444;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Paragraph Style */
.blog-post p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* List Style */
.blog-post ul {
  list-style-type: none;
  padding-left: 0;
}

.blog-post ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

.blog-post ul li strong {
  font-weight: bold;
}

/* Link Style */
.blog-post a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post a:hover {
  color: #0056b3;
}

/* Add a subtle border around the content */
.blog-post {
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-post {
    padding: 15px;
  }

  .blog-post h2 {
    font-size: 28px;
  }

  .blog-post h3 {
    font-size: 20px;
  }

  .blog-post p,
  .blog-post ul {
    font-size: 14px;
  }
}
