.blog-bg {
  position: relative;
  height: 435px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
      0deg,
      rgba(8, 0, 0, 0.5) 0%,
      rgba(255, 255, 255, 0.5) 100%
    ),
    url(https://res.cloudinary.com/dtjgawrwz/image/upload/v1733821957/blogbg_og6fad.jpg)
      lightgray 50% / cover no-repeat;
  filter: blur(4px);
  z-index: 1;
}

.blog-bg h1 {
  position: relative;
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 48px;
  font-weight: 700;
  z-index: 2;
}
/* General page styling */
.outer-article-bnr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  padding: 20px 60px;
}

/* Container for each article section */
.article-container {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: flex-start;
  max-width: 100%;
  margin-bottom: 20px;
  margin: 25px 0px;
}

/* Image styling */
.article-image {
  width: 429px;
  height: 285px;
  position: relative;
}
.article-image img {
  height: 100%;
  width: 100%;
}
/* Image credit styling */
.image-credit {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
}

/* blog-sec-content section styling */
.blog-sec-content {
  padding: 20px;
  width: 100%;
}

/* Title styling */
.blog-sec-content h2 {
  width: fit-content;
  border-radius: 2px;
  background: var(--primary-deep-blue-color, #001e74);
  color: #fff;
  padding: 10px;
  font-size: 18px;
  margin: 0;
}

/* Paragraph styling */
.blog-sec-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .appointment-section {
    padding: 0px !important;
    width: 100% !important;
  }
  .faq-section {
    padding: 40px !important;
    width: 100% !important;
  }
  .article-container {
    flex-direction: column;
  }
  .outer-article-bnr {
    padding: 0px 16px;
  }
  .article-image {
    width: 100%;
  }
}
