* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #172033;
  background: #e8eef7;
  margin: 0;
  padding: 40px;
}

main {
  max-width: 700px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

section {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(23, 32, 51, 0.08);
}

.quote-section {
  text-align: center;
}

#quote {
  font-size: 24px;
  font-style: italic;
}

#author {
  font-size: 18px;
  margin-bottom: 25px;
}

button {
  color: #ffffff;
  background: #2563eb;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background: #1d4ed8;
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  height: 100px;
  resize: vertical;
}

form button {
  margin-top: 20px;
}

#message {
  margin-top: 15px;
}
