body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f8fa;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

h1,
h2,
h3 {
  color: #111;
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

h2 {
  margin-top: 30px;
  font-size: 20px;
}

h3 {
  margin-top: 22px;
  font-size: 16px;
}

p {
  margin-bottom: 12px;
}

ul {
  padding-left: 22px;
}

li {
  margin-bottom: 6px;
}

.last-updated {
  font-size: 13px;
  color: #666;
  margin-bottom: 30px;
}

a {
  color: #1a73e8;
}

.deletion-form {
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.deletion-form label {
  font-weight: 600;
  font-size: 14px;
}

.deletion-form input,
.deletion-form select,
.deletion-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ccd3db;
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.deletion-form textarea {
  resize: vertical;
}

.deletion-form button {
  justify-self: start;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  background: #1a73e8;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.deletion-form button:hover {
  background: #155ec0;
}
