  body {
        background: #f8f9fa;
      }
      .header-bar {
        background: #002f6c;
        color: #fff;
        text-align: center;
        padding: 12px;
        font-size: 18px;
        font-weight: bold;
      }
      .call-box {
        background: #00a859;
        color: #fff;
        padding: 5px 15px;
        border-radius: 8px;
        font-weight: bold;
        margin-left: 10px;
      }
      .blog-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        overflow: hidden;
      }
      .blog-card img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        width: 100%;
        height: 180px;
        object-fit: cover;
      }
      .blog-card-body {
        padding: 15px;
      }
      .blog-title {
        font-weight: 600;
        font-size: 16px;
        color: #002f6c;
        margin-bottom: 8px;
      }
      .blog-desc {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
      }
      .speciality-tags .badge {
        background: #eaf6f9;
        color: #007b91;
        font-size: 14px;
        margin: 5px;
        padding: 8px 12px;
        border-radius: 20px;
        cursor: pointer;
      }
      .speciality-tags .badge:hover {
        background: #007b91;
        color: #fff;
      }
         .hero-image {
        position: relative;
        height: 350px;
        background-size: cover;
        background-position: center;
        border-radius: 12px;
      }
      .hero-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        color: #fff;
        border-radius: 12px;
      }
      .share-icons {
        position: sticky;
        top: 100px;
      }
      .share-icons a {
        display: block;
        margin: 8px 0;
        color: #0d6efd;
        font-size: 20px;
      }
      .callout-box {
        background: #f0f8ff;
        border-left: 4px solid #0d6efd;
        padding: 15px;
        margin: 20px 0;
        border-radius: 6px;
      }
      .author-box {
        border-top: 1px solid #eee;
        padding-top: 20px;
        margin-top: 40px;
      }
      .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #0d6efd;
        color: #fff;
        display: flex;
        justify-content: space-between;
        padding: 12px 20px;
        z-index: 999;
      }
      .sticky-cta a {
        color: #fff;
        font-weight: bold;
        text-decoration: none;
      }