.fixed-top {
    position: static;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.pp-body { font-family: Arial, sans-serif; line-height: 1.65; margin: 0; color: #1f2937; background: #fafafa; }
    .pp-container { max-width: 980px; margin: 0 auto; padding: 20px; background: #fff; }
    .pp-header h1 { line-height: 1.2; margin: 12px 0; font-size: 1.8rem; }
    .pp-header p { margin: 0; }
    .pp-lede { font-size: 1.05rem; color: #374151; margin-top: 6px; }
    .pp-section { margin-top: 28px; }
    .pp-section h2 { font-size: 1.4rem; margin-bottom: 12px; }
    .pp-list { padding-left: 20px; margin-top: 10px; }
    .pp-list li { margin-bottom: 8px; }
    .pp-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-top: 20px; }
    .pp-card { border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; background: #fff; }
    .pp-imgwrap { border-radius: 12px; overflow: hidden; border: 1px solid #e5e7eb; margin-bottom: 12px; }
    .pp-imgwrap img { display: block; width: 100%; height: auto; }
    .pp-card h3 { margin: 10px 0; font-size: 1.2rem; }
    .pp-footer { margin-top: 40px; text-align: center; font-size: 0.9rem; color: #6b7280; }
    .pp-footer a { color: #2563eb; text-decoration: none; }
    .pp-footer a:hover { text-decoration: underline; }
    @media (min-width: 720px) {
      .pp-grid.pp-2col { grid-template-columns: 1fr 1fr; }
    }
    .accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}
  </style>
  
    <style>
  .img-wrap{
    position: relative; 
    display: block; 
    width: 100%;
  }
  .img-wrap > img{
    display: block; 
    width: 100%; 
    height: auto;
  }
  .pin-btn{
    position: absolute;
    top: 12px; 
    right: 12px;
    width: 44px; 
    height: 44px;
    border-radius: 50%;
    background: #E60023; /* Pinterest red */
    color: #fff;
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    z-index: 9999; /* sit above any image z-index */
  }
  .pin-btn i{ font-size: 20px; line-height: 1; }
  .pin-btn:hover{ opacity: .9; }
  @media (max-width: 576px){
    .pin-btn{ width: 40px; height: 40px; top: 10px; right: 10px; }
  }  
  

    /* Instagram Grid - Scoped Styles (won't affect other images) */
    .instagram-style-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 10px;
    }

    .insta-grid-item {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        aspect-ratio: 1; /* Ensures square shape */
    }

    .insta-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .insta-grid-item:hover .insta-image {
        transform: scale(1.05);
    }

    .insta-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .insta-grid-item:hover .insta-overlay {
        opacity: 1;
    }

    .insta-overlay span {
        margin: 0 10px;
        font-weight: bold;
        font-size: 16px;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .instagram-style-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 8px;
        }
    }