
    .instagram-section {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
      text-align: center;
    }

    .instagram-section h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
    }

    .insta-title-gradient {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .insta-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }

    .insta-post {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }

    .insta-post img,
    .insta-post video {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .caption-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.6)
      );
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 16px;
      box-sizing: border-box;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .caption-text {
      color: white;
      font-size: 0.9rem;
      line-height: 1.4;
      width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      background: rgba(0, 0, 0, 0.4);
      padding: 10px;
      border-radius: 6px;
    }

    .insta-post:hover .caption-overlay {
      opacity: 0;
      animation: shimmer 1s forwards;
    }

    @keyframes shimmer {
      0% {
        background: rgba(255, 255, 255, 0.7);
      }
      50% {
        background: linear-gradient(
          110deg,
          rgba(255,255,255,0.4) 0%,
          rgba(255,255,255,0.9) 50%,
          rgba(255,255,255,0.4) 100%
        );
        background-size: 200% 100%;
        background-position: -100% 0;
      }
      100% {
        background: transparent;
      }
    }

    .view-instagram-btn {
      display: inline-block;
      background-color: #e0e0e0;
      color: #008060;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .view-instagram-btn:hover {
      background-color: #cfcfcf;
      transform: translateY(-2px);
    }

    @media (max-width: 600px) {
      .instagram-section h2 {
        font-size: 2rem;
      }
    }