 .ST_PS_scroll_hc-wrapper {
    width: 100%;
    position: relative;
    background: #000;
  }

  /* --- FIXED GLOBAL LABEL (GSAP PINNED) --- */
  .ST_PS_scroll_hc-label-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10; /* Set to 10 so the next website section can slide OVER it */
    pointer-events: none; 
  }

  .ST_PS_scroll_hc-label {
    margin: 0;
    padding: 50px 0 0 50px !important;
    color: rgba(250, 240, 220, 1);
    font-weight: 400;
    font-family: Clash Display;
    font-weight: 500;
    font-size: 64px;
    letter-spacing: 0%;
  }

  /* Full Screen Panel */
  .ST_PS_scroll_hc-panel {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* will-change: transform REMOVED here to prevent jerking */
  }

  /* Image Background */
  .ST_PS_scroll_hc-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0;
  }

  /* Dark gradient overlay */
  .ST_PS_scroll_hc-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
  }

  /* Centered Content Group */
  .ST_PS_scroll_hc-content {
    position: relative;
    width: 440px; 
    z-index: 5;
  }

  /* Thin overlapping circle */
  .ST_PS_scroll_hc-circle {
       position: absolute;
    top: -40px;
    right: -80px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    z-index: 1;
  }

  /* Offset White Background Block */
  .ST_PS_scroll_hc-backdrop {
        position: absolute;
    bottom: -70px;
    right: -75px;
    width: 64%;
    height: 379px;
    background-color: #FFFFFF;
    z-index: 2;
  }

  /* Main Beige Card */
  .ST_PS_scroll_hc-card {
    background-color: rgba(240, 234, 220, 1); 
    padding: 20px 35px 40px 35px; 
    position: relative;
    z-index: 3;
	      min-height: 500px;
  
  }

  .ST_PS_scroll_hc-title {
       color: rgba(45, 45, 45, 1);
    margin: 0 0 45px 0 !important;
    font-family: Clash Display;
    font-weight: 500;
    font-size: 48px;
    line-height: normal;
    letter-spacing: 0%;
    text-align: center;
  }

  .ST_PS_scroll_hc-desc {
        color: rgba(129, 136, 0, 1);
    margin: 0;
    text-align: left;
    font-family: var(--font-archivo), "Archivo", sans-serif !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 171%;
    letter-spacing: 0%; 
  }

  /* Overlapping Olive Green Button Container */
  .ST_PS_scroll_hc-btn {
        position: absolute;
    bottom: 40px;
    right: -40px;
    background-color: #7A893D;
    padding: 6px 6px 6px 24px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    z-index: 4;
    pointer-events: auto;
    font-family: Clash Display;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
    color: rgba(240, 234, 220, 1) !important;
  }

  .ST_PS_scroll_hc-btn-icon {
        display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(45, 45, 45, 1);
    width: 29px;
    height: 29px;
    border-radius: 50%;
  }

  .ST_PS_scroll_hc-btn-icon svg {
    width: 18px;
    height: 18px;
    transform: rotate(-45deg); 
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .ST_PS_scroll_hc-btn:hover .ST_PS_scroll_hc-btn-icon svg {
    transform: rotate(0deg); 
  }
  
  @media (min-width: 1200px) and (max-width: 1400px) {
      .ST_PS_scroll_hc-label{
          font-size: 60px;
      }
      .ST_PS_scroll_hc-title{
          font-size: 44px;
      }
  }

  /* --- Mobile Adjustments --- */
  @media (max-width: 768px) {
    .ST_PS_scroll_hc-label {
      padding: 30px 0 0 20px;
      font-size: 1.5rem;
    }

    .ST_PS_scroll_hc-content {
      width: 85%;
    }

    .ST_PS_scroll_hc-circle {
      width: 140px;
      height: 140px;
      top: -30px;
      right: -30px;
    }

    .ST_PS_scroll_hc-backdrop {
      right: -20px;
      bottom: -40px;
      height: 150px;
    }

    .ST_PS_scroll_hc-card {
      padding: 50px 30px 70px 30px;
    }

    .ST_PS_scroll_hc-title {
      font-size: 1.8rem;
      margin-bottom: 30px;
    }
    
    .ST_PS_scroll_hc-desc {
      font-size: 0.95rem;
    }

    .ST_PS_scroll_hc-btn {
      font-size: 1rem;
      padding: 5px 5px 5px 20px; 
      right: 20px;
    }

    .ST_PS_scroll_hc-btn-icon {
      width: 36px;
      height: 36px;
    }
  }