/* Reset some default styles */
body, h1, h2, h3, p, ul, li, input, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #f5f7fa;
  color: #222;
  min-height: 100vh;
  padding: 45px;
  
}

h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #2a4d69;
  text-align: center;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #333;
  text-align: center;
}
input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 1rem;
  text-align: center;
}

button {
  background: #2a4d69;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

#aiResponse {
  margin-top: 24px;
  padding: 16px;
  background: #e3f2fd;
  border-radius: 8px;
  min-height: 60px;
  color: #17406a;
  font-size: 1.1rem;
  white-space: pre
}