 /* ===== Banner ===== */
    .blog-banner {
      background: #f4f9f6;
      padding: 60px 0;
      text-align: center;
    }

    .blog-banner h1 {
      color: #2E8B57;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .blog-banner small {
      color: #666;
    }

    /* ===== Feature Image ===== */
    .blog-feature-image {
      max-width: 900px;
      margin: 40px auto 0;
    }

    .blog-feature-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 12px;
    }

    /* ===== Blog Content ===== */
    .blog-content {
      max-width: 900px;
      margin: 40px auto;
    }

    .blog-content h3 {
      color: #2E8B57;
      margin-top: 35px;
      font-weight: 500;
    }

    .blog-content p {
      margin-bottom: 16px;
    }

    .blog-content ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .blog-content ul li {
      margin-bottom: 8px;
    }

    /* ===== CTA ===== */
    .blog-cta {
      background: #2E8B57;
      color: #fff;
      padding: 45px 30px;
      border-radius: 8px;
      text-align: center;
      margin-top: 60px;
    }

    .blog-cta h4 {
      font-weight: 500;
      margin-bottom: 10px;
    }

    .blog-cta a {
      display: inline-block;
      background: #fff;
      color: #2E8B57;
      padding: 10px 28px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      margin-top: 15px;
    }

    .blog-cta a:hover {
      background: #f4f4f4;
      text-decoration: none;
    }

    /* ===== Mobile ===== */
    @media (max-width: 767px) {
      .blog-feature-image img {
        height: 260px;
      }
    }



          .sc-read-more {
    color: #2E8B57;
    font-weight: 500;
    text-decoration: none;
}
.blog-banner {
   
    background-image: url('images/Blog_banner.jpg'); 
    background-size: cover;
    background-position: center;
    height: 400px; 
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif;
}


.banner-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.banner-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.banner-overlay p {
    font-size: 1.2rem;
}


@media (max-width: 768px) {
    .blog-banner {
        height: 300px; 
    }
    .banner-overlay h1 {
        font-size: 2rem;
    }
}