/* Блок з цінами */
.pricing-block {
  padding: 70px 20px;
}

.pricing-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 25px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: rgba(209,29,131,0.25);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.pricing-card p {
  color: #ddd;
  font-size: 15px;
  margin-bottom: 15px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.pricing-card ul li {
  margin: 6px 0;
  font-size: 14px;
  color: #f1f1f1;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #fdda0f;
  margin-top: 10px;
}

.wrapper {
  margin-top: 70px;
}

.block {
  margin-top: 70px;
  
}

