 
  
  .blog-hero {
      position: relative;
      background-image: url('https://blog.vacatu.com/content/images/beach-vacatu.jpg');
      background-size: cover;
      background-position: center;
      height: 300px;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .blog-hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.45);
    }

    .blog-hero-text {
      position: relative;
      text-align: center;
      z-index: 1;
    }

    .blog-hero-text h1 {
      font-size: 2rem;
      font-weight: bold;
    }

    .breadcrumb-bar {
      background-color: #f8f9fa;
      padding: 10px 0;
      font-size: 0.95rem;
    }

    .breadcrumb a {
      color: #07A597;
      text-decoration: none;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    /* Blog Body */
    .blog-content {
      padding: 40px 0;
    }

    .blog-section {
      margin-bottom: 40px;
    }

    .blog-section img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .blog-section h2 {
      color: #07A597;
      font-size: 1.4rem;
      margin-top: 10px;
    }

    .blog-section p {
      font-size: 1rem;
      line-height: 1.7;
    }

    .check-btn {
      background-color: #07A597;
      color: #fff;
      border: none;
      padding: 8px 18px;
      border-radius: 30px;
      font-size: 0.95rem;
      transition: 0.3s;
    }

    .check-btn:hover {
      background-color: #059482;
      color: #fff;
    }

    /* Social Share */
    .social-share a {
      margin-right: 10px;
      font-size: 1.3rem;
      color: #07A597;
      transition: 0.3s;
    }

    .social-share a:hover {
      color: #059482;
    }

    /* Next/Prev Buttons */
    .next-prev {
      display: flex;
      justify-content: space-between;
      margin-top: 50px;
    }

    .next-prev a {
      background-color: #07A597;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      transition: 0.3s;
    }

    .next-prev a:hover {
      background-color: #059482;
    }

 
 