/* Кастомный стиль чекбокса */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #000;
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: relative;
  border-radius: 3px;
}

input[type="checkbox"]:checked {
  background-color: #C6A471; /* Цвет галочки */
  border-color: #C6A471;
}

input[type="checkbox"]:checked::after {
  content: '✔';
  color: #fff;
  position: absolute;
  left: 2px;
  top: -1px;
  font-size: 14px;
}
