body {
  font-family: Arial, sans-serif;
  background: #0b1020;
  color: white;
  padding: 20px;
  margin: 0;
}

h1 {
  margin-bottom: 10px;
}

p {
  color: #d0d0d0;
}

.top-boxes {
  display: flex;
  gap: 20px;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}

.price-box {
  background: #161c30;
  padding: 20px;
  border-radius: 12px;
  min-width: 220px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.price-box h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.price-box p {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  color: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #161c30;
  border-radius: 12px;
  overflow: hidden;
}

th, td {
  border-bottom: 1px solid #2a314a;
  padding: 12px;
  text-align: left;
}

th {
  background: #1d2540;
}

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