/* style.css */
body {
  font-family: system-ui, sans-serif;
  background: #f7f7f7;
  color: #222;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 480px;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

h1 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: #111;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input[type="email"],
input[type="url"] {
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #bbb;
  border-radius: 4px;
  width: 100%;
}

button {
  background: #333;
  color: white;
  font-size: 1rem;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #000;
}

/* Collapsible */
details.collapsible {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5rem;
  background: #eee;
  color: #111;
}

details.collapsible[open] {
  background: #ddd;
}

details.collapsible summary {
  cursor: pointer;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

span {
  color: #c00;
}

Let me know if you want the success.html next or want to jump to the review landing page (/property/[id].html).