.zr-onboarding-package-container {

  .zr-content {
    color: #2f2f2f;

    .zr-packages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;

      .zr-package-card {
        background: #fff;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        justify-content: space-between;

        &:hover {
          transform: translateY(-4px);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }
        .zr-package-card-wrapper{
          display: flex;
          flex-direction: column;
          padding: 1rem;
          justify-content: space-between;
          height: 100%;

          .zr-package-card-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
            position: relative;

            .zr-package-name {
              margin: 0;
              font-size: 2rem;
              font-weight: 500;
              color: #111111;
              line-height: 1.3;
            }

            .zr-package-price {
              font-size: 1.6rem;
              font-weight: normal;
              color: #808080;
            }
            .zr-package-sub-header{
              font-size: 1.2rem;
              font-weight: 600;
              color: #333333;
              line-height: 1.3;
            }


            .zr-package-image img {
              width: 120px;
              height: 100%;
              object-fit: cover;
              border-radius: 12px;
            }

            .zr-package-information {
              font-size: 1rem;
              color: #333333;
              line-height: 1.6;
              opacity: 0.8;
              width: 100%;

              p {
                color: #333333;
                font-size: 0.9rem;
                line-height: 1.6;
                opacity: 0.8;
                width: 100%;
                padding: 0;
                margin : 2rem 0 !important;
              }
              ul,
              ol {
                padding: 0;
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
                margin-top: 0;
                margin-bottom: 0;
              }

              ul li {
                border-radius: 8px;
                line-height: 1.6;
                color: #333333;
                font-weight: 500;
                position: relative;
                transition: all 0.2s ease;
                text-align: left;
                padding-left: 2rem;

                &::before {
                  content: '';
                  position: absolute;
                  left: 0.875rem;
                  top: 50%;
                  transform: translateY(-50%);
                  width: 8px;
                  height: 8px;
                  background: #282525;
                  border-radius: 50%;
                  flex-shrink: 0;
                }
              }

              ol {
                counter-reset: list-counter;

                li {
                  padding: 0.875rem 1rem;
                  background: rgba(216, 35, 42, 0.06);
                  border-radius: 8px;
                  line-height: 1.6;
                  color: #2f2f2f;
                  font-weight: 500;
                  counter-increment: list-counter;
                  padding-left: 2.5rem;
                  position: relative;
                  transition: all 0.2s ease;

                  &::before {
                    content: counter(list-counter);
                    position: absolute;
                    left: 0.875rem;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 24px;
                    height: 24px;
                    background: #D8232A;
                    color: #fff;
                    border-radius: 6px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 0.75rem;
                    font-weight: 700;
                    flex-shrink: 0;
                  }
                }
              }

              p {
                margin: 0.75rem 0;
                line-height: 1.6;
              }

              h1,
              h2,
              h3 {
                font-size: 1.2rem;
                font-weight: 600;
                color: #2f2f2f;
                margin-bottom: 1.5rem;
              }
            }
          }
          .zr-onboarding-select-button {
            margin-top: 1rem;
            width: 100%;
            cursor: pointer;
            background-color: #d8232a;
            color: #fff;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            transition: background-color 0.3s ease;
            box-shadow: 0 8px 18px rgba(227, 0, 15, 0.22);

            &:hover {
              background-color: #282525;
              box-shadow: 0 8px 18px rgba(40, 37, 37, 0.22);
              color: #fff;
            }
          }
        }
        }
    }
  }
}

@media (max-width: 768px) {
  .zr-onboarding-package-container {
    .zr-content {
      .zr-packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }
  }
}
