.cfit-question {
  margin-bottom: 20px;
}
.cfit-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.cfit-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cfit-option {
  padding: 10px 20px;
  background: #3b6fc4;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  transition: 0.2s ease;
  text-align: center;
  min-width: 40px;
}
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + .cfit-option {
  background: #1abc9c;
  border-color: #0e9c83;
}
@media (max-width: 600px) {
  .cfit-options {
    flex-direction: column;
  }
}
