.pricing-section {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  padding: 20px 40px;
  margin: auto;
  text-align: center;
}
.price-section {
  max-width: 500px;
  margin: auto;
  text-align: center;
}
.price-section h2{
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 1.2;
}
.price-image{
  max-width: 500px;
}
.price-image img{
  width: 100%;
}
.packages {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
}

.package {
  position: relative;
  border: 2px solid #ddd;
  border-radius: 14px;
  padding: 30px 45px;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.package strong {
  font-size: 50px;
  display: block;
}

.package span {
  font-size: 20px;
}

.package.active {
  background: #1b1b4f;
  color: #fff;
  border-color: #1b1b4f;
}

.badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: gold;
  color: #000;
  font-size: 10px !important;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  white-space: nowrap;
}

#price {
  font-size: 35px;
  margin-top: 15px;
}

#save {
  font-size: 25px;
  color: red;
  font-weight: bold;
}

.add-cart {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  font-size: 20px;
  border-radius: 30px;
  background: linear-gradient(to right, #ffd65a, #ffb700);
  border: none;
  cursor: pointer;
}
.add-cart:hover{
  color: #fff;
  background:#001C38;
}


@media only screen and (max-width:768px){
  .pricing-section{
        padding: 20px 10px;
        flex-direction: column;
  }
  .package{
        padding: 13px 22px;
  }
  .package strong {
    font-size: 40px;
    display: block;
}
.price-section h2 {
    font-size: 2rem;
}
.add-cart {
    font-size: 16px;
}

}

@media only screen and (max-width:448px){
  .packages {
    gap: 9px;
  }
}