/* GLOBAL STYLES */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7f9fc;
  color: #222;
  margin: 0;
  padding: 0;
}

h1, h3 {
  color: #00274c;
}

/* HEADER BANNER */
.header {
  background: #fff;
  padding: 0;
  border-bottom: 2px solid #ddd;
  text-align: center;
}

.full-logo {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* CONTAINER */
.container {
  max-width: 750px;
  background: #fff;
  margin: 2em auto;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

h3 {
  font-size: 1.4em;
  margin-top: 0;
  text-align: center;
  color: #c03e67;
}

p {
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1em;
}

/* QUESTIONS */
.question {
  margin-bottom: 2em;
}

.question p {
  margin-bottom: 0.5em;
  font-weight: 500;
}

/* RADIO OPTIONS */
label {
  display: block;
  margin: 0.4em 0;
  cursor: pointer;
  padding: 0.2em 0.5em;
  border-radius: 6px;
  transition: background 0.2s ease;
}

label:hover {
  background: #f0f0f0;
}

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

/* SUBMIT BUTTON */
button[type="submit"] {
  display: block;
  width: 100%;
  background-color: #c03e67;
  color: white;
  padding: 0.9em 1em;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #a23155;
}

/* DISCLAIMER */
.disclaimer {
  font-size: 0.85em;
  color: #666;
  text-align: center;
  margin-top: 2em;
  line-height: 1.4;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
  .container {
    padding: 1.2em;
  }

  h3 {
    font-size: 1.2em;
  }

  .question p {
    font-size: 1rem;
  }

  label {
    font-size: 0.95rem;
  }

  button[type="submit"] {
    font-size: 1rem;
  }
}
