  .blog-header {
      background: linear-gradient(135deg, #FE8267 0%, #ff6b52 100%);
      padding: 60px 0 40px;
      color: white;
  }

  .blog-content {
      padding: 3rem 0;
  }

  .blog-featured-image {
      width: 100%;
      max-height: 500px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 2rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .blog-meta-info {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 2px solid #e2e8f0;
  }

  .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #FE8267;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 1.25rem;
  }

  .author-info {
      flex: 1;
  }

  .author-name {
      font-weight: 600;
      color: #151515;
      margin-bottom: 0.25rem;
  }

  .blog-date {
      color: #475467;
      font-size: 0.9rem;
  }

  .blog-body {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #1f2937;
  }

  .blog-body h2 {
      margin-top: 2rem;
      margin-bottom: 1rem;
      font-weight: 700;
      color: #151515;
  }

  .blog-body h3 {
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
      font-weight: 600;
      color: #151515;
  }

  .blog-body p {
      margin-bottom: 1.5rem;
  }

  .blog-body img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 1.5rem 0;
  }

  .blog-body ul,
  .blog-body ol {
      margin-bottom: 1.5rem;
      padding-left: 2rem;
  }

  .blog-body li {
      margin-bottom: 0.5rem;
  }

  .blog-body blockquote {
      border-left: 4px solid #FE8267;
      padding-left: 1.5rem;
      margin: 1.5rem 0;
      font-style: italic;
      color: #475467;
  }

  .share-section {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 2px solid #e2e8f0;
  }

  .share-buttons {
      display: flex;
      gap: 1rem;
  }

  .share-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      color: white;
      text-decoration: none;
      transition: transform 0.2s ease;
  }

  .share-btn:hover {
      transform: scale(1.1);
      color: white;
  }

  .share-btn.facebook {
      background: #1877f2;
  }

  .share-btn.twitter {
      background: #1da1f2;
  }

  .share-btn.linkedin {
      background: #0077b5;
  }

  .share-btn.whatsapp {
      background: #25d366;
  }

  .related-posts {
      margin-top: 4rem;
      padding-top: 3rem;
      border-top: 2px solid #e2e8f0;
  }

  .related-post-card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .related-post-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .related-post-img {
      height: 180px;
      object-fit: cover;
      width: 100%;
  }

  .breadcrumb {
      background: transparent;
      padding: 0;
      margin-bottom: 1rem;
  }

  .breadcrumb-item a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
  }

  .breadcrumb-item a:hover {
      color: white;
  }

  .breadcrumb-item.active {
      color: white;
  }

  .breadcrumb-item+.breadcrumb-item::before {
      color: rgba(255, 255, 255, 0.6);
  }

  .back-to-blogs {
      display: inline-flex;
      align-items: center;
      color: #FE8267;
      text-decoration: none;
      font-weight: 500;
      margin-bottom: 2rem;
  }

  .back-to-blogs:hover {
      color: #e76f5a;
  }

  .blog-hero {
      background: linear-gradient(135deg, #FE8267 0%, #ff6b52 100%);
      padding: 80px 0 60px;
      color: white;
  }

  .blog-card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .blog-card-img {
      height: 220px;
      object-fit: cover;
      width: 100%;
  }

  .blog-card-body {
      padding: 1.5rem;
  }

  .blog-meta {
      font-size: 0.875rem;
      color: #475467;
      margin-bottom: 0.75rem;
  }

  .blog-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: #151515;
  }

  .blog-excerpt {
      color: #475467;
      font-size: 0.95rem;
      line-height: 1.6;
  }

  .read-more-btn {
      color: #FE8267;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      margin-top: 1rem;
  }

  .read-more-btn:hover {
      color: #e76f5a;
  }

  .search-box {
      max-width: 600px;
      margin: 0 auto;
  }

  .sidebar-widget {
      background: white;
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .widget-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #151515;
  }

  .recent-post-item {
      display: flex;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #e2e8f0;
  }

  .recent-post-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
  }

  .recent-post-img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 8px;
      margin-right: 1rem;
  }

  .recent-post-content {
      flex: 1;
  }

  .recent-post-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: #151515;
      margin-bottom: 0.25rem;
      text-decoration: none;
      display: block;
  }

  .recent-post-title:hover {
      color: #FE8267;
  }

  .recent-post-date {
      font-size: 0.8rem;
      color: #475467;
  }
  