body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #222;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: white;
  border-bottom: 1px solid #eee;
}

header h1 {
  color: #b8962e;
  font-weight: 600;
}

nav a {
  text-decoration: none;
  color: #222;
  margin-left: 30px;
  font-weight: 500;
}

nav a:hover {
  color: #b8962e;
}

/* HERO */
.hero {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #fff, #faf8f2);
}

.hero h2 {
  font-size: 42px;
  max-width: 800px;
  margin: auto;
  font-weight: 600;
}

.hero p {
  margin-top: 20px;
  color: #555;
  font-size: 18px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 35px;
  background: #b8962e;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: #222;
  color: white;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 50px auto;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  color: #b8962e;
  margin-bottom: 15px;
}

/* FORM */
.form-container {
  max-width: 700px;
  margin: auto;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  font-weight: 500;
  color: #b8962e;
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.price-box {
  margin-top: 20px;
  padding: 15px;
  background: #faf8f2;
  border-radius: 10px;
  font-weight: 600;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  background: #111;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px){
  header {
    flex-direction: column;
    padding: 20px;
  }
  nav {
    margin-top: 15px;
  }
  .hero h2 {
    font-size: 28px;
  }
}