body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f6f8fc;
    margin: 0;
    padding: 0;
    color: #222;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
  }

  ul li {
    margin-bottom: 0 !important;
    list-style: none;
  }
  
  header {
    background-color: #0d0e2c;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
  }

  header a {
    color: #fff;
    text-decoration: none;
  }

  header h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: normal;
  }

  nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 0.95rem;
  }

  @media (max-width: 768px) {
    header {
      padding: 16px 16px;
    }
    header h1 {
      font-size: 1rem;
    }
    nav a {
      font-size: 0.7rem;
    }
  }
  
  .wrapper {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .content {
    flex: 2;
    background: #fff;
    padding: 40px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    box-sizing: border-box;
    max-width: 100%;
  }

  .image-caption {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    background: #f5f5f5;
    padding: 8px 12px;
    margin-bottom: 24px;
    border-left: 3px solid #ccc;
  }
  
  .sidebar {
    flex: 1;
    margin-left: 30px;
  }
  
  .widget {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .widget h3 {
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .widget ul {
    list-style: none;
    padding-left: 0;
  }
  
  .widget ul li {
    list-style: none;;
  }

  .widget ul li a{
    display: flex;
    gap: .25rem;
    align-items: center;
    margin-bottom: 8px;
    gap: .25rem;
    align-items: center;
    background-color: rgb(244, 244, 244);
    padding: 1rem;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .widget ul li:hover {
    cursor: pointer;
  }
  
  .widget ul li a:link, .widget ul li a:active, .widget ul li a:visited {
    text-decoration: none;
    color: inherit;
  }
  
  .widget.socials ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    column-gap: 10px;
    row-gap: 10px;
  }
  
  .widget.socials ul li, .widget.popular ul li {
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
    list-style: none;    
    /* transform: translateY(0); */
  } 

  .widget.socials ul li a {
    margin-bottom: 0 !important;
    list-style: none;
  }
  
  .widget.socials ul li a:hover, .widget.popular ul li a:hover {
    /* transform: translateY(-3px); */
    box-shadow: 0 3px 3px rgba(0,0,0,0.09);
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 0.3em;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.4rem;
    margin-top: 2em;
    margin-bottom: 0.8em;
    line-height: 1.4;
  }
  
  p {
    margin-bottom: 1.2em;
  }

  /* index styles */

  .content.home {
    background-color: transparent;
    box-shadow: none;
    margin-top: 0;
    padding-top: 0;
  }

  .blog-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
  }

  @media (min-width: 1024px) {
    .blog-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 1023px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr); /* Tablets + mobile */
    }
  }

  @media (max-width: 768px) {
    .content.home {
      background-color: transparent;
      box-shadow: none;
      padding-top: 1rem;
    }
  }

  .blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .blog-card a {
    text-decoration: none;
    color: inherit;
  }

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

  .blog-card .content-inner {
    padding: 1rem;
  }

  .blog-card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #0d0e2c;
  }

  .blog-card p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.5rem;
  }

  .blog-card .read-more {
    display: inline-block;
    margin-top: 0.8rem;
    color: #0077cc;
    font-weight: bold;
    text-decoration: none;
  }

  .content > h1 {
    font-size: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: #0d0e2c;
  }
  
  .author-meta {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .author-meta img {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .author-info strong {
    font-size: 1rem;
    color: #222;
  }
  
  .author-title {
    font-size: 0.85rem;
    color: #777;
    margin-top: -2px;
  }
  
  .author-details {
    display: flex;
    gap: 14px;
    font-size: 0.85rem;
    margin-top: 6px;
    flex-wrap: wrap;
  }
  
  .author-details .icon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  
  img, figure {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  figure {
    margin-top: 20px;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0
  }
  
  figure figcaption {
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 8px;
    color: #555;
  }
  
  a.button {
    display: inline-block;
    background: #0d0e2c;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
  }
  
  ul, ol {
    padding-left: 20px;
    margin-bottom: 1.5em;
  }
  
  ul li, ol li {
    margin-bottom: 0.6em;
    line-height: 1.6;
  }
  
  /* Offer Section Styles */
  
  .bundle-section {
    max-width: 1200px;
    margin: 10px auto;
    padding: 40px 0px;
    /* background: #fffdf8; */
    border-radius: 12px;
    /* box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04); */
  }
  
  .bundle-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .bundle-options {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
  }

  
  @media (max-width: 768px) {
    .bundle-options {
      gap: 12px;
    }
  }
  
  .bundle-card {
    background: white;
    border: 2px solid #ddd;
    border-radius: 14px;
    padding: 20px 20px 0;
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
    height: 100%;
  }
  
  .bundle-card:hover {
    cursor: pointer;
  }
  
  .bundle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  
  .bundle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
  
  .bundle-card .price {
    font-size: 1.2rem;
    margin: 0;
  }
  
  .bundle-card .price span {
    font-size: 1rem;
    font-weight: normal;
    color: #555;
  }
  
  .bundle-card img {
    /* max-width: 110px;
    margin: 12px auto 12px; */
  }
  
  .discount-tag {
    font-size: 0.85rem;
    background: #7e2121;
    color: #fff;
    padding: 6px 12px;
    font-weight: bold;
    border-radius: 6px;
    width: fit-content;
    margin: 8px auto;
  }
  
  .bundle-card.highlight-gray .discount-tag {
    background: #848484;
  }
  
  .bundle-card.highlight-orange .discount-tag {
    background: #e76f51;
  }
  
  .bundle-card.highlight-navy .discount-tag {
    background: #0d0e2c;
  }
  
  .buy-button {
    border-radius: 5px;
    padding: .5rem;
    color: white;
    margin-bottom: 1rem;
    background: green;  
  }
  
  .bundle-card .bottom-bar {
    background: #ff793f;
    color: white;
    font-weight: bold;
    padding: 10px 0;
    margin-top: auto;
    margin-left: -22px;
    margin-right: -22px;
    margin-bottom: -2px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  
  .bundle-card.highlight-gray .bottom-bar {
    background: #848484;
  }
  
  .bundle-card.highlight-navy .bottom-bar {
    background: #0d0e2c;
  }
  
  .highlight-orange {
    background: #fff5f2;
    border: 2px solid #e76f51;
  }
  
  .highlight-navy {
    background: #f1f4ff;
    border: 2px solid #0d0e2c;
  }
  
  .selected-bundle {
      transition: transform 0.2s ease, outline 0.2s ease;
      z-index: 2;
    }
  
    .show-btn {
      animation: fadeIn 0.3s ease-in;
    }
  
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
  
  .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d0e2c;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    width: 125px;
  }
  
  @media (max-width: 768px) {
    .bundle-card {
      flex: 1 1 0;
      min-width: 0;
      padding: 20px 5px 0;
    }
    .badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: #0d0e2c;
      color: #fff;
      font-size: .6rem;
      font-weight: bold;
      padding: 4px 12px;
      border-radius: 20px;
      width: 67px;
    }
    .bundle-card h3 {
      font-size: 1rem;
      margin-bottom: 4px;
  }
  .bundle-card .price {
      font-size: .8rem;
      margin: 0;
  }
  .discount-tag {
      font-size: 0.5rem;
      background: #7e2121;
      color: #fff;
      padding: 6px 12px;
      font-weight: bold;
      border-radius: 6px;
      width: fit-content;
      margin: 8px auto;
  }
  .bundle-card .bottom-bar {
      background: #ff793f;
      color: white;
      font-weight: bold;
      padding: 10px 0;
      margin-top: auto;
      margin-left: -6px;
      margin-right: -6px;
      margin-bottom: -2px;
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 12px;
      font-size: 0.5rem;
  }
  }
  
  .highlight-orange .badge {
    background: #e76f51;
  }
  
  .highlight-gray .badge {
    background: #848484;
  }
  
  .bundle-gifts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
  }
  
  .gift-item {
    flex: 1 1 120px;
  }
  
  .gift-item img {
    height: 50px;
    margin-bottom: 10px;
  }
  
  .promo-bar {
    background: #fff7ed;
    color: #7c2d12;
    padding: 14px 0px;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 24px;
    font-size: 1.1rem;
    display: flex;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  
  .promo-bar span:nth-child(2) {
    margin-top: .5rem;
  }
  
  .promo-label {
    font-weight: 700;
    font-size: 1.05rem;
    color: #b34700;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .promo-timer {
    background: #b34700;
    color: #fff;
    padding: 4px 10px;
    font-size: 1rem;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
  }
  
  .author-offer-intro {
    max-width: 850px;
    margin: 60px auto 40px;
    margin-bottom: 0;
    padding: 30px 28px;
    background: #ffffff;
    border: 1px solid #eee;
    border-left: 6px solid #0d0e2c;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .author-message-with-image {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .author-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .author-text {
    flex: 1;
    min-width: 250px;
  }
  
  .author-text p {
    margin-bottom: 1em;
  }
  
  .author-signoff {
    margin-top: 1.5em;
    font-style: italic;
    font-weight: 500;
    color: #333;
  }
  
  .author-text .highlight {
    color: #b34700;
    font-weight: bold;
    background: #fff4e6;
    padding: 0 4px;
    border-radius: 4px;
  }
  
  .author-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 16px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #777;
    max-width: 100%;
  }
  
  .author-details .icon {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  
  @media (min-width: 768px) {
    .author-details {
      grid-template-columns: repeat(4, auto);
    }
  }
  
  @media (max-width: 600px) {
    .author-offer-intro {
      padding: 20px 16px;
    }
    .author-message-with-image {
      flex-direction: column;
      align-items: center;
      text-align: left;
    }
    .author-photo {
      margin-bottom: 16px;
    }
    .author-text {
      width: 100%;
    }
  }
  
  .comments {
    max-width: 850px;
    margin: 60px auto;
    /* padding: 0 20px; */
  }
  .comments h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #0d0e2c;
    font-weight: bold;
  }
  .comment-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
  }
  .comment-list > li {
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 16px;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.02); */
    position: relative;
    /* border-left: 3px solid #ccc; */
  }
  .comment-top {
    font-weight: bold;
    margin-bottom: 8px;
  }
  .comment-top span {
    display: block;
    font-weight: normal;
    margin-top: 4px;
  }
  .comment-meta {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: #666;
    margin-top: 6px;
    align-items: center;
    flex-wrap: wrap;
  }
  .reply-toggle {
    font-size: 0.85rem;
    background: none;
    border: none;
    color: #0d0e2c;
    cursor: pointer;
  }
  .reply-toggle:hover {
    text-decoration: underline;
  }
  .reply-input {
    width: 100%;
    margin-top: 8px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.9rem;
    box-sizing: border-box;
    display: none;
  }
  .meta {
    font-size: 0.8rem;
    color: #888;
  }
  .like-count {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .like-count button {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
  }
  .view-replies {
    background: none;
    border: none;
    color: #0d0e2c;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 8px;
  }
  .view-replies:hover {
    text-decoration: underline;
  }
  .replies {
    list-style: none;
    margin-top: 10px;
    padding-left: 20px;
    border-left: 2px solid #ddd;
  }
  .replies.hidden-comments {
    display: none;
  }
  
  @media (min-width: 768px) {
    .bundle-options {
      flex-direction: row;
    }
  }
  
  @media screen and (max-width: 1024px) {
    .wrapper {
      flex-direction: column;
      padding: 0 0;
      margin: 0;
    }
  
    .sidebar {
      display: none;
    }
  
    .content {
      width: 100%;
      margin-top: 0;
      padding-top: 0;
      padding: 20px 16px;
    }
  }
  
  #sticky-text {
    font-weight: 500;
  }
  
  #sticky-btn {
    padding: 10px 20px;
    background: #06ac27;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  @media screen and (max-width: 392px) {
    #sticky-text {
      font-size: .8rem;
    }
    #sticky-btn {
      padding: 10px 10px !important;
    }
  }

  .cta-offer-box {
    background-color: #fff8f0;
    border: 1px solid #f0c8b8;
    padding: .5rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    box-sizing: border-box;
  }
  
  .cta-flex {
    display: flex;
    gap: 1rem;
    /* align-items: flex-start;
    flex-wrap: wrap; */
  }
  
  .cta-image {
    width: 150px;
    border-radius: 8px;
    /* object-fit: cover; */
  }
  
  .cta-text {
    font-size: .8rem;
  }
  
  .cta-text h4 {
    margin-top: 0;
    font-size: .8rem;
    color: #c25d4d;
    line-height: normal;
    margin: .25rem;
  }
  
  .cta-text p {
    margin-bottom: 1rem;
    margin: 0;
    font-size: .7rem;
  }

  @media screen and (min-width: 768px) {
    .cta-text h4 {
      font-size: 1.2rem;
    }

    .cta-text p {
      font-size: .9rem;
    }

  }
  
  .cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #c25d4d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: .5rem;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  
  .cta-button:hover {
    background-color: #a8433a;
  }

  .final-cta {
    margin-bottom: 5rem;
    font-size: 1.1rem;
    font-style: italic;
  }
  
  .final-cta .cta-button {
    margin-top: 0.5rem;
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #c25d4d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .final-cta .cta-button:hover {
    background-color: #a8433a;
  }

  @media screen and (max-width: 768px) {
    .desktop {
      display: none;
    }

  }
  
  