/* General Styles */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

/* Header Section */
.blog-header {
  background-color: #4a148c;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

.blog-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

/* Blog Section */
.blog-section-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.custom-card {
  background: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Blog Post Image */
.img-fluid {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #eee;
}

/* Blog Content */
.blog-section-post-content {
  padding: 1.5rem;
}

.blog-section-post-content small {
  display: block;
  font-size: 0.9rem;
  color: #757575;
  margin-bottom: 0.5rem;
}

.blog-section-post-content h4 {
  font-size: 1.8rem;
  color: #4a148c;
  margin-bottom: 1rem;
}

.blog-section-post-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* Subheadings */
.blog-content h5,
.blog-content h6 {
  color: #4a148c;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.blog-content h6 {
  font-size: 1.2rem;
}

/* Links */
a {
  color: #4a148c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background-color: #4a148c;
  color: #fff;
  font-size: small;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 2rem;
  }

  .blog-section-container {
    padding: 0 0.5rem;
  }

  .blog-section-post-content h5 {
    font-size: 1.2rem;
  }

  .blog-content h6 {
    font-size: 1.1rem;
  }
}
