.sell-your-gold {
  background: #fdfcf5;
  padding: 60px 20px;
  color: #333;
}
.sell-your-gold .container {
  max-width: 800px;
  margin: 0 auto;
}
.sell-your-gold h2 {
  text-align: center;
  color: #b78c0a;
  margin-bottom: 30px;
  font-size: 2rem;
}
.sell-your-gold .intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.price-banner {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}
.calc-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.calc-form .field {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.calc-form label {
  margin-bottom: 5px;
  font-weight: 600;
}
.calc-form input,
.calc-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.result {
  text-align: center;
  font-size: 1.25rem;
  margin-top: 20px;
}
.btn-submit {
  text-align: center;
}
.btn-submit button {
  background-color: #b78c0a;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-submit button:hover {
  background-color: #9c6f08;
}
.info-steps, .store-locator {
  margin-top: 40px;
}
.info-steps ul {
  list-style: disc;
  padding-left: 20px;
}
.store-locator a {
  color: #b78c0a;
  text-decoration: underline;
}
