/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  padding: 20px;
}

/* Header Section */
.blog-header {
  text-align: center;
  background-color: #4a90e2;
  color: #fff;
  padding: 20px 0;
  border-radius: 8px;
  margin-bottom: 20px;
}

.blog-header h1 {
  font-size: 2rem;
  font-weight: bold;
}

/* Blog Section */
.blog-section-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.blog-section-post {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.blog-section-post img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.blog-section-post-content {
  padding: 0 10px;
}

.blog-section-post-content small {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.blog-section-post-content h4 {
  font-size: 1.8rem;
  color: #4a90e2;
  margin-bottom: 15px;
  font-weight: bold;
}

.blog-section-post-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.blog-content h5 {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #4a90e2;
  font-weight: bold;
}

.blog-content p {
  margin-top: 10px;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 20px;
  padding: 15px 10px;
  background: #4a90e2;
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
}

.footer small {
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 1.8rem;
  }

  .blog-section-post-content h4 {
    font-size: 1.5rem;
  }

  .blog-content h5 {
    font-size: 1rem;
  }

  .blog-section-container {
    margin: 0 10px;
  }
}
