/* General Styling */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Styling */
.blog-header {
  background-color: #ff6688;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.blog-header h1 {
  margin: 0;
}

/* Blog Post Container */
.blog-section-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Blog Post Card */
.custom-card {
  overflow: hidden;
}

.custom-card img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.blog-section-post-content {
  padding: 20px;
}

.blog-section-post-content small {
  display: block;
  color: #888;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.blog-section-post-content h4 {
  color: #ff6688;
  font-size: 1.6rem;
  margin: 10px 0;
}

.blog-section-post-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* Blog Content */
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  color: #ff6688;
  margin-bottom: 10px;
  font-weight: bold;
}

.blog-content h5 {
  font-size: 1.2rem;
}

.blog-content p {
  font-size: 1rem;
  line-height: 1.8;
}

/* Footer Styling */
.footer {
  text-align: center;
  padding: 20px 0;
  background-color: #ff6688;
  color: #fff;
  margin-top: 20px;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-header {
    font-size: 1.5rem;
    padding: 15px 0;
  }

  .blog-section-container {
    margin: 10px;
    padding: 15px;
  }

  .blog-content h4,
  .blog-content h5 {
    font-size: 1rem;
  }
}
