.packages-comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 2%;
}
.package-card {
    max-width: 95%;
  background: #f2fff7;
  border: 3px outset #009a44;
  border-radius: 18px;
  box-shadow: 0 2px 12px #009a4422;
  padding: 15px 15px;
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
   box-shadow: inset 5px 5px 5px 2px rgb(11 155 74 / 0.05), inset -5px -5px 20px 2px rgba(0, 0, 0, 0.1), 1px 1px 20px 0px rgb(0 0 0 / 0.2), -1px -1px 20px 0px rgb(0 0 0 / 0.2);
  box-shadow: var(--shadow-elevation-medium), inset 5px 5px 5px 0px rgb(255 255 255 / 50%);
   box-sizing: border-box;
}
.package-card:hover {
box-shadow:  inset 1px 1px 20px 1px rgb(246 217 124 / 0%), inset -1px -1px 20px 20px rgb(246 217 124 / 17%);


}


.package-card h3 {
  color: #009a44;
  margin-bottom: 0.5em;
  margin-top: 0px;
  border-bottom: 1px dotted #d5b555;
}
.package-summary {
    text-align: center ;
    font-size: clamp(0.75rem, 0.663rem + 0.4348vw, 1rem);
    margin-bottom: 10px;
}
.package-number {
    display: flex;
    background-color: #d5b555;
    color: #000000;
        border-radius: 25px;
    padding: 0.2em 0.5em;
      text-align: center;
       justify-self: center;
  margin-right: 15px;
  margin-left: 5px;
border: 1px solid #009a44;
font-size: 12px;
}
.package-card-subtitle {
  color: white;
  text-shadow: #009a44 1px 1px 2px;
  margin-bottom: 0.5em;
  background-color: #d5b555;
  margin: 0px;
  width: 100%;
  text-align: center;
   padding-top: 3px;
    padding-bottom: 3px;
       background: linear-gradient(227deg,rgba(213, 181, 85, 0.75) 0%, rgba(213, 181, 85, 1) 100%);
}
.bookkeeping-line {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
   }
.package-card ul {
    margin: 0 0 1em 0;
    padding-top: 5px;
  border: 1px solid #d5b555;
  padding-bottom: 5px;
  
}
.package-card ul li {
   color: #007a34;
  text-align: left;
   position: relative;
   padding-left: 1.5em;
  font-size: clamp(0.75rem, 0.663rem + 0.4348vw, 1rem);
  list-style: none;
 }
.package-card ul li:not(.package-li-not)::before {
    content: "✔ "; 
    color: #009a44; 
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.package-li-not{
  color: #8a34348a !important;
  font-style: italic;
}
.package-li-not::before {
  content: "✖ "; 
   position: absolute;
    left: 0;
    top: 0;
  color: #8a34348a; 
  font-weight: bold; 
}
.package-price {
  font-size: 1.1em;
  color: #f2fff7;
 padding: 3px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.package-price-main {
  font-size: 1.4em; font-weight: bolder;
}
.package-btn {
  background: #009a44;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 1px 15px;
  text-decoration: none;
  font-size: 1em;
  margin-top: auto;
  transition: background 0.2s;
    box-shadow: var(--shadow-elevation-low), inset 5px 5px 5px 0px rgb(255 255 255 / 50%);
    width: 80%;
}
.package-btn:hover {
  background: #007a34;
}
@media (max-width: 900px) {
  .packages-comparison {
    flex-direction: column;
    align-items: center;
  }
}