.price-section {
  max-width: 600px;
  margin: 2.5rem auto;
  padding: 2rem 2rem;
  background: rgba(30,30,30,0.97);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  
}

.price-section h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--primary-yellow, #d1ab30);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  background: transparent;
}

.price-table th, .price-table td {
  padding: 0.85em 1em;
  border-bottom: 1px solid #444;
  text-align: left;
  font-size: 1.07em;
}

.price-table th {
  background: rgba(255,255,255,0.04);
  color: var(--primary-yellow, #d1ab30);
  font-family: 'Merriweather', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.price-table td {
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

.price-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 600px) {
  .price-section {
    padding: 0.5rem 1rem;
    max-width: 99vw;
  }

  .price-table th,
  .price-table td {
    padding: 0.6em 0.4em;
    font-size: 0.97em;
    word-break: break-word;
  }

  .price-table {
    font-size: 0.97em;
    display: block;
    overflow-x: auto;
    width: 100%;

    
  }
}