 /* Card Stack Process */
      .card-stack-process {
        padding: 1.5rem 0 3.5rem;
        background: var(--white);
        position: relative;
        overflow: hidden;
      }

      .process-section-title {
        text-align: center;
        margin-bottom: 2.5rem;
        position: relative;
        z-index: 5;
      }

      .process-section-title h2 {
        font-size: 2rem;
        position: relative;
        display: inline-block;
        padding-bottom: 1rem;
      }

       
    .process-section-title h2::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--tertiary);
      border-radius: 2px;
    } 
      
    .process-section-title p {
      max-width: 700px;
      margin: 1rem auto 0;
      color: var(--gray-light);
      font-weight: 400;
    } 

      .cards-container {
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto 2rem;
        min-height: 520px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .cards-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        position: relative;
      }

      .process-card {
        position: absolute;
        width: 500px;
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        padding: 25px;
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        opacity: 0;
        transform: scale(0.85) translateX(0);
        z-index: 1;
        cursor: pointer;
      }

      .process-card.active {
        opacity: 1;
        transform: scale(1) translateX(0);
        z-index: 10;
        cursor: default;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
      }

      .process-card.prev {
        opacity: 0.7;
        transform: scale(0.9) translateX(-120%);
        z-index: 5;
      }

      .process-card.next {
        opacity: 0.7;
        transform: scale(0.9) translateX(120%);
        z-index: 5;
      }

      .process-card.far-prev {
        opacity: 0.4;
        transform: scale(0.85) translateX(-200%);
        z-index: 2;
      }

      .process-card.far-next {
        opacity: 0.4;
        transform: scale(0.85) translateX(200%);
        z-index: 2;
      }

      .step-number {
        width: 45px;
        height: 45px;
        background: var(--tertiary);
        color: var(--dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.3rem;
        margin: 0 auto 15px;
        transition: var(--transition);
      }

      .process-card.active .step-number {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
      }

      .step-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 15px;
        color: var(--primary);
        padding-bottom: 8px;
        border-bottom: 2px solid var(--tertiary-light);
      }

      .step-list {
        list-style-type: none;
        margin-top: 12px;
      }

      .step-list li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 22px;
        font-size: 0.95rem;
      }

      .step-list li:before {
        content: "•";
        color: var(--tertiary);
        font-size: 1.5rem;
        position: absolute;
        left: 0;
        top: -5px;
      }

      .step-subtitle {
        margin-top: 1.2rem;
        margin-bottom: 0.5rem;
        font-size: 1rem;
        color: var(--dark);
        font-weight: 600;
      }

      .trust-icons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-top: 0.8rem;
        padding-top: 0.8rem;
        border-top: 1px solid var(--tertiary-light);
      }

      .trust-icon {
        display: flex;
        align-items: center;
        background: rgba(42, 110, 63, 0.05);
        padding: 0.6rem 1rem;
        border-radius: 30px;
        font-size: 0.85rem;
      }

      .trust-icon i {
        color: var(--primary);
        margin-right: 6px;
        font-size: 0.9rem;
      }

      .card-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 25px;
        gap: 15px;
        position: relative;
        z-index: 20;
      }

      .nav-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: var(--tertiary);
        color: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        cursor: pointer;
        transition: var(--transition);
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }

      .nav-btn:hover {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
      }

      .nav-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: scale(1);
      }

      .card-indicators {
        display: flex;
        gap: 8px;
      }

      .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--gray-light);
        cursor: pointer;
        transition: var(--transition);
      }

      .indicator.active {
        background: var(--tertiary);
        transform: scale(1.3);
      }

      /* Clickable overlay for card navigation */
      .card-click-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        z-index: 20;
      }

      .card-click-left,
      .card-click-right {
        flex: 1;
        height: 100%;
      }

      /* Medium Screen Optimization (481px - 769px) */
      @media (min-width: 481px) and (max-width: 769px) {
        .card-stack-process {
          padding: 1rem 0 2.5rem;
        }

        .process-section-title {
          margin-bottom: 1.8rem;
        }

        .process-section-title h2 {
          font-size: 1.7rem;
        }

        .process-section-title p {
          margin-top: 0.8rem;
          font-size: 0.95rem;
          max-width: 90%;
        }

        .cards-container {
          min-height: 480px;
          margin-bottom: 1.2rem;
        }

        .process-card {
          width: 420px;
          padding: 22px;
        }

        .process-card.prev {
          transform: scale(0.9) translateX(-110%);
        }

        .process-card.next {
          transform: scale(0.9) translateX(110%);
        }

        .process-card.far-prev {
          transform: scale(0.85) translateX(-180%);
        }

        .process-card.far-next {
          transform: scale(0.85) translateX(180%);
        }

        .step-title {
          font-size: 1.25rem;
        }

        .step-list li {
          font-size: 0.92rem;
        }

        .card-navigation {
          margin-top: 18px;
          gap: 12px;
        }

        .nav-btn {
          width: 42px;
          height: 42px;
        }
      }

      @media (min-width: 481px) and (max-width: 507px) {
        .cards-container {
          min-height: 450px;
          margin-bottom: 1rem;
        }

        .process-card {
          width: 360px;
          padding: 16px;
        }

        .process-card.prev {
          transform: scale(0.9) translateX(-100%);
        }

        .process-card.next {
          transform: scale(0.9) translateX(100%);
        }

        .process-card.far-prev {
          transform: scale(0.85) translateX(-150%);
        }

        .process-card.far-next {
          transform: scale(0.85) translateX(150%);
        }

        .step-title {
          font-size: 1.1rem;
        }

        .step-list li {
          font-size: 0.85rem;
        }

        .card-navigation {
          margin-top: 12px;
          gap: 10px;
        }

        .nav-btn {
          width: 38px;
          height: 38px;
          font-size: 0.95rem;
        }

        .indicator {
          width: 8px;
          height: 8px;
        }

        .trust-icons {
          flex-direction: column;
          gap: 0.4rem;
        }

        .trust-icon {
          width: 100%;
          font-size: 0.78rem;
          padding: 0.45rem 0.8rem;
        }
      }

      /* Mobile Responsive */
      @media (max-width: 1024px) {
        .process-card {
          width: 450px;
        }

        .cards-container {
          min-height: 540px;
        }
      }

      @media (max-width: 768px) {
        .card-stack-process {
          padding: 1rem 0 3rem;
        }

        .process-section-title {
          margin-bottom: 2rem;
        }

        .process-section-title h2 {
          font-size: 1.6rem;
        }

        .cards-container {
          min-height: 560px;
          margin-bottom: 1.5rem;
        }

        .process-card {
          width: 85%;
          max-width: 400px;
          padding: 20px;
        }

        .process-card.prev {
          transform: scale(0.9) translateX(-110%);
        }

        .process-card.next {
          transform: scale(0.9) translateX(110%);
        }

        .process-card.far-prev {
          transform: scale(0.85) translateX(-170%);
        }

        .process-card.far-next {
          transform: scale(0.85) translateX(170%);
        }

        .step-title {
          font-size: 1.2rem;
        }

        .trust-icons {
          flex-direction: column;
          gap: 0.5rem;
        }

        .trust-icon {
          width: 100%;
        }

        .card-navigation {
          margin-top: 20px;
        }
      }

      @media (max-width: 600px) {
        .cards-container {
          min-height: 580px;
        }
      }

      @media (max-width: 480px) {
        .process-section-title h2 {
          font-size: 1.4rem;
        }

        .cards-container {
          min-height: 600px;
        }

        .process-card {
          width: 90%;
          max-width: 350px;
          padding: 18px;
        }

        .process-card.prev {
          transform: scale(0.9) translateX(-100%);
        }

        .process-card.next {
          transform: scale(0.9) translateX(100%);
        }

        .process-card.far-prev {
          transform: scale(0.85) translateX(-150%);
        }

        .process-card.far-next {
          transform: scale(0.85) translateX(150%);
        }

        .step-title {
          font-size: 1.1rem;
        }

        .step-list li {
          font-size: 0.9rem;
        }

        .nav-btn {
          width: 40px;
          height: 40px;
        }

        .step-subtitle {
          font-size: 0.95rem;
        }

        .trust-icon {
          font-size: 0.8rem;
          padding: 0.5rem 0.8rem;
        }
      }

      /* Fix for 400px and below screens */
      @media (max-width: 400px) {
        .card-stack-process {
          padding: 0.4rem 0 1.5rem;
        }

        .process-section-title {
          margin-bottom: 0.8rem;
        }

        .process-section-title h2 {
          font-size: 1.15rem;
          padding-bottom: 0.6rem;
        }

        .process-section-title h2::after {
          width: 70px;
          height: 3px;
        }

        .process-section-title p {
          font-size: 0.8rem;
          margin-top: 0.4rem;
          padding: 0 8px;
        }

        .cards-container {
          min-height: 480px;
          margin-bottom: 0.8rem;
          padding: 5px 0;
        }

        .process-card {
          width: 92%;
          max-width: 300px;
          padding: 14px 12px;
        }

        .process-card.prev {
          transform: scale(0.85) translateX(-90%);
        }

        .process-card.next {
          transform: scale(0.85) translateX(90%);
        }

        .process-card.far-prev {
          transform: scale(0.8) translateX(-130%);
          opacity: 0.2;
        }

        .process-card.far-next {
          transform: scale(0.8) translateX(130%);
          opacity: 0.2;
        }

        .step-number {
          width: 34px;
          height: 34px;
          font-size: 0.95rem;
          margin-bottom: 8px;
        }

        .step-title {
          font-size: 0.95rem;
          margin-bottom: 8px;
          padding-bottom: 4px;
        }

        .step-list {
          margin-top: 6px;
        }

        .step-list li {
          font-size: 0.78rem;
          margin-bottom: 5px;
          padding-left: 16px;
          line-height: 1.4;
        }

        .step-list li:before {
          font-size: 1.1rem;
          top: -3px;
        }

        .step-subtitle {
          margin-top: 0.6rem;
          font-size: 0.8rem;
          margin-bottom: 0.2rem;
        }

        .trust-icons {
          margin-top: 0.5rem;
          padding-top: 0.5rem;
          gap: 0.3rem;
        }

        .trust-icon {
          font-size: 0.68rem;
          padding: 0.35rem 0.5rem;
          border-radius: 18px;
        }

        .trust-icon i {
          font-size: 0.75rem;
          margin-right: 3px;
        }

        .card-navigation {
          margin-top: 12px;
          gap: 8px;
          flex-wrap: wrap;
        }

        .nav-btn {
          width: 34px;
          height: 34px;
          font-size: 0.85rem;
        }

        .indicator {
          width: 7px;
          height: 7px;
        }
      }

      @media (max-width: 360px) {
        .cards-container {
          min-height: 500px;
        }

        .process-card {
          padding: 12px 10px;
          width: 94%;
        }

        .step-title {
          font-size: 0.9rem;
        }

        .step-list li {
          font-size: 0.75rem;
        }

        .trust-icon {
          font-size: 0.65rem;
          padding: 0.3rem 0.4rem;
        }

        .nav-btn {
          width: 32px;
          height: 32px;
        }
      }

      @media (max-width: 320px) {
        .process-section-title h2 {
          font-size: 1.05rem;
        }

        .cards-container {
          min-height: 520px;
        }

        .process-card {
          width: 96%;
          max-width: 280px;
          padding: 10px 8px;
        }

        .step-number {
          width: 30px;
          height: 30px;
          font-size: 0.9rem;
        }

        .step-title {
          font-size: 0.85rem;
          margin-bottom: 6px;
        }

        .step-list li {
          font-size: 0.72rem;
          padding-left: 14px;
        }

        .step-list li:before {
          font-size: 1rem;
          top: -2px;
        }

        .step-subtitle {
          font-size: 0.78rem;
        }

        .trust-icons {
          margin-top: 0.4rem;
          padding-top: 0.4rem;
        }

        .trust-icon {
          font-size: 0.62rem;
          padding: 0.25rem 0.35rem;
        }

        .card-navigation {
          margin-top: 10px;
        }

        .nav-btn {
          width: 30px;
          height: 30px;
          font-size: 0.8rem;
        }

        .indicator {
          width: 6px;
          height: 6px;
        }
      }

      /* Additional fix for extremely small screens */
      @media (max-width: 280px) {
        .container {
          width: 95%;
          padding: 0 8px;
        }

        .cards-container {
          min-height: 540px;
        }

        .process-card {
          width: 98%;
          max-width: 260px;
        }

        .step-list li {
          font-size: 0.7rem;
        }

        .trust-icon {
          font-size: 0.6rem;
        }

        .card-navigation {
          flex-wrap: wrap;
          justify-content: space-around;
          gap: 6px;
        }

        .card-indicators {
          order: 3;
          width: 100%;
          justify-content: center;
          margin-top: 4px;
        }
      }