.price-table-container {
  max-width: 1580px;
  margin: 80px auto 100px;
  padding: 0 30px;
}

.price-table-container h1 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #111;
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: -1px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: white;
  border: 1px solid #808080;
}

.price-table th,
.price-table td {
  border: 1px solid #808080;
  padding: 0.5rem;
  color: #000;
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
}

.price-table th {
  background-color: #A0D9E2;
  font-weight: bold;
  text-align: center;
  font-size: 13px;
  vertical-align: middle;
  border: 1px solid #808080;
}

.price-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.price-table tbody tr:hover {
  background-color: #f0f0f0;
}

/* 반응형 */
@media (max-width: 768px) {
  .price-table {
    font-size: 0.8rem;
  }
  
  .price-table th,
  .price-table td {
    padding: 0.3rem;
  }
}
