body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f6fc;
  color: #2b2b2b;
  margin: 0;
  padding: 0;
}

.container {
  width: 85%;
  margin: 0 auto;
  padding: 60px 0;
}

h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #5e2ced;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Form Styling */
.quotation-form {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 500;
  color: #4b22c3;
  margin-bottom: 6px;
}

input, select, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #5e2ced;
  box-shadow: 0 0 5px rgba(94, 44, 237, 0.2);
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

.button-group {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.primary-btn, .secondary-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.primary-btn {
  background: #5e2ced;
  color: white;
}

.primary-btn:hover {
  background: #4b22c3;
}

.secondary-btn {
  background: #f2ecff;
  color: #5e2ced;
}

.secondary-btn:hover {
  background: #e3d6ff;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  h2 {
    font-size: 2rem;
  }
}
