.main-content {
  padding-right: 20px;
  padding-left: 20px;
}

/* ================= PRICES ================= */

.prices-container {
  display: flex;
  justify-content: center;
}

h2.prices-title {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.price-card {
  width: 50%;
  min-height: 220px;
  padding: 25px;
  margin: 3.125em 0 5em 0;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.3);
}

/* Lista prezzi */
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card li {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.price-card li:last-child {
  border-bottom: none;
}

.price-card span {
  font-weight: 400;
  padding-left: 10px;
}

@media (max-width: 767px) {
  .price-card {
    width: 90%;
  }
}
