<style>
    /* Reset & Base */
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
    body { background: #f4f6f8; color: #333; line-height: 1.6; }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      background: #5D4037;
      color: #fff;
      z-index: 1000;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      height: 60px;
    }
    .header-container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100%;
    }
    .logo img { height: 40px; object-fit: contain; }

    /* Menu */
    .menu { list-style: none; display: flex; gap: 18px; }
    .menu li a {
      color: #FFF3E0;
      text-decoration: none;
      font-weight: 500;
      padding: 5px 12px;
      border-radius: 5px;
      transition: background 0.3s, color 0.3s;
      font-size: 0.95em;
    }
    .menu li a:hover { background: #D7CCC8; color: #5D4037; }

    /* Hamburger for mobile */
    .hamburger {
      display: none;
      font-size: 28px;
      cursor: pointer;
      color: #FFF3E0;
    }

    /* Mobile Slide Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -250px;
      width: 250px;
      height: 100%;
      background: #5D4037;
      box-shadow: -2px 0 5px rgba(0,0,0,0.2);
      transition: right 0.3s ease;
      z-index: 9999;
      padding-top: 50px;
      display: flex;
      flex-direction: column;
    }
    .mobile-menu .close-btn {
      color: #FFF3E0;
      font-size: 24px;
      padding: 10px 20px;
      cursor: pointer;
      position: absolute;
      top: 10px;
      right: 10px;
    }
    .mobile-menu a {
      color: #FFF3E0;
      text-decoration: none;
      padding: 12px 20px;
      border-bottom: 1px solid #6d4c41;
      font-weight: 500;
    }
    .mobile-menu a:hover { background: #D7CCC8; color: #5D4037; }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      z-index: 998;
      display: none;
    }

    /* Main Layout */
    .main-wrapper { display: flex; max-width: 1140px; margin: 30px auto; gap: 20px; }
    .content { flex: 3; }

    /* Posts Grid */
    .posts-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 15px;
    }

    /* Smaller Stylish Post Card */
    .post-card {
      background: #fff;
      border: 1.2px solid #ccc; /* lighter border */
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      position: relative;
      padding-bottom: 10px;
    }
    .post-card:hover {
      transform: translateY(-5px) scale(1.01);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
      border-color: #ff6b6b;
    }
    .post-card img {
      width: 80%; /* smaller image */
      margin: 12px auto 0;
      height: 160px; /* reduced height */
      object-fit: cover;
      border-radius: 6px;
      display: block;
      transition: transform 0.3s;
    }
    .post-card img:hover { transform: scale(1.03); }
    .post-card h2 {
      margin: 12px 15px 8px;
      font-size: 1.05em; /* smaller font */
      color: #1a1a2e;
    }
    .post-card h2 a:hover { color: #ff6b6b; }
    .post-card p {
      margin: 0 15px 12px;
      color: #555;
      font-size: 0.88em; /* smaller font */
      line-height: 1.4;
    }

    .btn {
      display: inline-block;
      margin: 20px auto;
      padding: 8px 25px;
      background: #ff6b6b;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: 500;
      font-size: 0.95em;
      text-align: center;
      transition: background 0.3s;
    }
    .btn:hover { background: #e55b5b; }

    /* Sidebar */
    .sidebar { flex: 1; height: fit-content; }

    /* Direct Links Widget */
    .direct-links {
      background: #fff;
      padding: 16px;
      border: 2px solid #f0f0f0;
      border-radius: 10px;
      box-shadow: 0 0 5px rgba(0,0,0,0.05);
      font-family: 'Segoe UI', sans-serif;
      width: 100%;
      max-width: 420px;
      box-sizing: border-box;
      margin: 0 auto;
    }
    .direct-links h3 {
      color: #c0392b;
      border-bottom: 2px solid #e74c3c;
      padding-bottom: 8px;
      margin-bottom: 15px;
      font-size: 20px;
    }
    .direct-links a {
      display: block;
      width: 100%;
      box-sizing: border-box;
      background: #f9f9f9;
      border-left: 5px solid #007bff;
      margin: 6px 0;
      padding: 8px 16px;
      border-radius: 6px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: 0.3s ease;
    }
    .direct-links a:hover {
      background: #007bff;
      color: #fff;
      border-left-color: #0056b3;
    }

    /* Footer */
    footer {
      margin-top: 50px;
      background: #1a1a2e;
      color: #fff;
      text-align: center;
      padding: 20px;
      font-size: 0.9em;
      line-height: 1.5;
    }
    footer span { color: #ff6b6b; font-weight: 600; }

    /* Responsive */
    @media(max-width: 900px) { .main-wrapper { flex-direction: column; } }
    @media(max-width: 768px) { 
      .menu { display: none; }
      .hamburger { display: block; }
      .posts-grid { grid-template-columns: 1fr; }
      .post-card:nth-child(n+3) { display: none; }
      .btn { display: inline-block; text-align: center; margin: 20px auto; width: auto; }
    }
    
    
.secure-trust-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.secure-footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.trust-item {
  background: #111827;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid #1f2937;
}

.trust-item h4 {
  margin: 10px 0 8px;
  font-size: 16px;
  color: #f9fafb;
}

.trust-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #cbd5f5;
}

.secure-footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  border-top: 1px solid #1f2937;
  padding-top: 15px;
}

/* Mobile */
@media (max-width: 900px) {
  .secure-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .secure-footer-container {
    grid-template-columns: 1fr;
  }
}

/* Small Book Widget (Text Only) */
.book-mini-widget{
  margin-top:15px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:12px;
  font-size:13px;
  box-shadow:0 2px 6px rgba(0,0,0,0.06);
}

.book-mini-widget h4{
  font-size:14px;
  margin-bottom:6px;
  color:#1a1a2e;
}

.book-mini-widget p{
  font-size:12px;
  color:#555;
  line-height:1.5;
  margin-bottom:6px;
}

.book-mini-widget span{
  display:block;
  font-size:11px;
  color:#16a34a;
  font-weight:500;
}

/* Pay ₹29 Button inside widget */
.pay29-btn {
  display: block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #ff6b6b;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.pay29-btn:hover {
  background: #e55b5b;
}

/* Reduce font size of first widget on desktop */
@media(min-width: 900px) {
  .sidebar .direct-links:first-child {
    font-size: 0.85em; /* smaller font for long text */
  }

  /* Optional: reduce link padding a bit so it fits */
  .sidebar .direct-links:first-child a {
    padding: 6px 12px;
    font-size: 0.85em;
  }
}

</style>