:root {
  --primary-color: #FFD700;
  --background-dark: #000000;
  --background-light: #ffffff;
  --text-light: #ffffff;
  --text-dark: #000000;
  --font-main: 'Montserrat', sans-serif;
}

.prices-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem 2rem;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
  font-family: var(--font-main);
}

.prices-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.prices-hero p {
  font-size: 1.2rem;
  max-width: 1200px;
}

.price-grid {
  padding: 2rem;
  background-color: var(--background-light);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-dark);
}

.price-table th,
.price-table td {
  padding: 1rem;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

.price-table th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.price-table tr:hover {
  background-color: #f9f9f9;
}

@media (max-width: 600px) {
  .price-table th,
  .price-table td {
    font-size: 0.9rem;
    padding: 0.75rem;
  }
}
