#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 {
  border: 1px solid #ddd;
  background: #fff;
}
.price-box-header {
  background: #c6aa5b;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}
.price-box-amount {
  padding: 20px;
  text-align: center;
  font-size: 20px;
}
.price-box-description {
  padding: 0 20px 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.price-section-cta {
  text-align: center;
  margin-top: 30px;
}
.price-section-cta .price-btn {
  display: inline-block;
  background: #c6aa5b;
  color: #fff;
  padding: 10px 30px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.price-section-cta .price-btn:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

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