.price-list-section {
  padding: 60px 20px;
  background-color: #083b4c;
  color: #fff;
}

.price-list-section h1 {
  text-align: center;
  margin-bottom: 20px;
}

.price-table-container {
  overflow-x: auto;
}

.price-table {
  width: 85%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin: 0 auto;
  font-size: 18px;
  background: transparent;
  border-radius: 8px;
  color: #fff;
}

.price-table thead tr {
  border-radius: 8px;
  overflow: hidden;
}

.price-table th,
.price-table td {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
}

.price-table th {
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.price-table tbody tr {
  background-color: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.price-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.price-table td:last-child {
  text-align: center;
  font-weight: 600;
  color: #fff;
}

.price-table td strong {
  color: #fff;
}

.price-note {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}
