/* ===== SEKCJA CENNIK ===== */

.pricing-page {
  padding: 120px 20px 100px 20px;
  background: #f8f7f4;
  min-height: 100vh;
}

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pricing-container h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.pricing-subtitle {
  margin-bottom: 50px;
  font-size: 18px;
  color: #555;
}

/* ===== TABELA ===== */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-table th,
.pricing-table td {
  padding: 22px;
  text-align: center;
}

.pricing-table th {
  background: #C67C7C;
  font-weight: 600;
  color: #ffffff;
}

.pricing-table tr:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.price {
  font-size: 20px;
  font-weight: 600;
}

/* ===== PRZYCISK ===== */

.cta-button {
  margin-top: 50px;
  padding: 14px 35px;
  border-radius: 30px;
  border: none;
  background: #C67C7C;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
  color: #ffffff;
}

.cta-button:hover {
  opacity: 0.85;
}

/* ===== RESPONSYWNOŚĆ ===== */

@media (max-width: 768px) {

  .pricing-container h1 {
    font-size: 32px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 14px;
    font-size: 14px;
  }

}
