#price-section {
  margin: 40px auto;
  max-width: 960px;
  padding: 0 15px;
}
.price-header {
  text-align: center;
  margin-bottom: 30px;
}
.price-header h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.price-header p {
  font-size: 16px;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.price-box {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 0;
}
.price-box:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.price-box-header {
  background: #c6aa5b;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 16px; /* reset to default size */
}
.price-box-amount {
  padding: 4px 0; /* minimal vertical padding */
  text-align: center;
  font-size: 10px; /* set amount size to 10px */
}
.price-box-amount small {
  font-size: 0.6em;
  margin-left: 4px;
}
.price-box-separator {
  height: 1px;
  background: #ddd;
  width: 100%;
  margin: 10px 0;
}
.price-box-description {
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.price-section-cta {
  text-align: center;
  margin: 20px 0;
}
.price-section-cta .price-btn {
  display: inline-block;
  background: #c6aa5b;
  color: #fff;
  padding: 8px 30px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.price-section-cta .price-btn:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-section-cta .price-btn {
    width: 100%;
    box-sizing: border-box;
  }
}
