
.card_holder {
    font-family: Arial, sans-serif;
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: right;
    gap: 20px;
    margin-top: 20px;
}


      .card {
          border-style: solid;
          border-color: #333333;
          border-width: 2px;
          width: calc(33% - 30px);
          height: auto;
          border-radius: 20px;
          background: linear-gradient(to bottom, #19A801, #006a44);
      }

      .header-image {
        background-color: white;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-top-left-radius: 17px !important;
        border-top-right-radius: 17px !important;
        border-bottom-right-radius: 40px !important;
        overflow: hidden !important;

      }

      .card-header {
        border: none;
        padding: 0 !important;
        z-index: 5;
        position: relative;

        background-color: white;
        border-top-left-radius: 17px !important;
        border-top-right-radius: 17px !important;
        border-bottom-right-radius: 40px !important;
      }

      .header-absolute {
        z-index: 5;
        position: absolute;
        background-color: white;
        height: 50px;
        width: 100%;
        left: 0;
        top: 100%;
      }

      .card-body {
        position: relative;
        z-index: 10;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
        background: linear-gradient(to bottom, #0d8a22, #006a44);
        color: white;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
      }

      .card-body h2 {
        font-size: 16px;
        margin: 0;
      }

      .card-body p {
        margin: 30px 0;
        font-size: 16px;
        opacity: 0.8;
      }

      .info {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 10px 0;
      }

      .info span {
        box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
        background: white;
        color: #333333;
        padding: 5px 10px;
        border-radius: 100px;
        font-size: 14px;
      }

      .features-title {
        font-size: 20px;
        margin-right: 6px;
      }

      .features {
        font-size: 14px;
      }

      .features ul {
        padding: 0;
        list-style-type: none;
      }

      .features li {
        font-size: 16px;
        margin: 5px 0;
        gap: 4px;
        display: flex;
      }

      .btn-container {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
      }

      .btn {
        width: 100%;
        font-size: 18px;
        text-align: center;
        background: #19A801;
        color: white;
        border: none;
        padding: 10px;
        margin-top: 3px;
        border-radius: 5px;
      }

      input[type="checkbox"] {
        appearance: none;
        width: 14px;
        height: 14px;
        background-color: white;
        border: 2px solid white;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }

      input[type="checkbox"]:checked {
        background-color: white;
        border: 2px solid white;
      }

      input[type="checkbox"]::after {
        content: "";
        width: 10px;
        height: 10px;
        display: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23006A44' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
        background-size: contain;
      }

      input[type="checkbox"]:checked::after {
        display: block;
      }

            @media (max-width: 768px) {
.card_holder {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: baseline;
        padding: 0 1rem;
        width: 100%;
    }
      
    .card {
        width: 45%;
        height: auto;
        /* min-height: 200px; */
        /* max-height: 400px; */
    }
      
              .card-header {
                min-height: 100px;
                max-height: 100px;
              }
      
              .header-image {
                height: 100px;
              }
      
              .card-body {
                padding: 10px;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
              }
      
              .card-body h2 {
height:2rem;    
              }
      
              .info {
                flex-direction: column;
                align-items: center;
                gap: 5px;
              }
      
              .info span {
                font-size: 12px;
                padding: 3px 7px;
              }
      
              .features,
              .features-title {
                display: none;
                /* مخفی کردن ویژگی‌ها */
              }
      
              .btn-container {
                width: 90%;
              }
      
              .btn {
                font-size: 14px;
                padding: 8px;
              }
            }