
    .page-banner {
      width: 100%;
      height: 400px;
      background-image: url("../images/Blog_banner.jpg"); /* your banner image */
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    /* Optional overlay for readability */
    .page-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.3);
    }

    .banner-content {
      position: relative;
      z-index: 2;
    }

    .banner-content h1 {
      margin: 0;
      font-size: 48px;
      color: #8f2f2f; /* green title */
      font-weight: 600;
    }

    .breadcrumbb {
      margin-top: 10px;
      font-size: 18px;
      color: #ffffff;
    }

    .breadcrumbb a {
      color: #ffffff;
      text-decoration: none;
    }

    .breadcrumbb a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .page-banner {
        height: 220px;
      }

      .banner-content h1 {
        font-size: 34px;
      }
    }