/* Reset + ogólny wygląd */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #f3f6f9;
  padding: 2em;
  color: #333;
}

form {
  background: #ffffff;
  padding: 2em 2.5em;
  max-width: 700px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
}

h2 {
  text-align: center;
  color: #004080;
  margin-bottom: 1em;
}

h3 {
  text-align: left;
  color: #004080;
  font-size: 2em;
  margin-bottom: 1em;
  margin-top: 2em;
}

label {
  font-weight: 400;
  margin-top: 1em;
  display: block;
  color: #222;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.6em;
  margin-top: 0.3em;
  margin-bottom: 0.8em;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #0077cc;
  outline: none;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 0.5em;
}

button {
  background-color: #0077cc;
  color: white;
  padding: 0.8em 1.4em;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1em;
  margin-top: 1em;
  width: 100%;
}

button:hover {
  background-color: #005fa3;
}

/* Odpowiedź od GPT */
.response {
  background: #f1fff1;
  border: 1px solid #b6e2b6;
  padding: 1.5em;
  margin: 2em auto;
  border-radius: 8px;
  max-width: 720px;
  line-height: 1.6;
  font-size: 1rem;
  color: #2a3c2a;
  white-space: pre-wrap;
}

.response h3 {
  margin-top: 1em;
  font-size: 1.2em;
  color: #1d5f1d;
}

.response ul {
  padding-left: 1.5em;
}

.response li {
  margin-bottom: 0.5em;
}
