/* styleprice.css */

.section-pricing {
  background: #2c3e50;
  padding: 60px 0;
  color: #fff;
}

.pricing {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.pricing-item {
  background: #34495e;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  overflow: hidden;
  max-width: 300px;
  flex: 1;
  transition: transform 0.3s ease;
}

.pricing__item--featured {
  background: #e67e22;
  color: #fff;
}

.pricing-item:hover {
  transform: scale(1.05);
}

.pricing-deco {
  position: relative;
  padding: 30px 20px 20px;
  background: #1abc9c;
  color: #fff;
  text-align: center;
}

.pricing__item--featured .pricing-deco {
  background: #d35400;
}

.pricing-deco-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 0;
}

.pricing-price {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 40px 0 10px;
  z-index: 1;
  position: relative;
}

.pricing-currency {
  font-size: 20px;
  color: #000000;
  vertical-align: top;
}

.pricing-period {
  font-size: 14px;
  display: block;
}

.pricing-title {
  margin: 0;
  font-size: 22px;
  z-index: 1;
  position: relative;
}

.pricing-feature-list {
  list-style: none;
  padding: 20px;
  margin: 0;
  background: #ecf0f1;
  color: #2c3e50;
}

.pricing-feature {
  padding: 10px 0;
  border-bottom: 1px solid #bdc3c7;
}

.pricing-feature:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing {
    flex-direction: column;
    align-items: center;
  }

  .pricing-item {
    max-width: 90%;
  }
}
