body {
  font-family: "Open Sans", sans-serif;
}
.font-heading {
  font-family: "Montserrat", sans-serif;
}
.radio-option:has(input:checked) {
  border-color: #f5a623;
  background-color: rgba(245, 166, 35, 0.05);
}
.radio-option input:checked + .radio-dot {
  background-color: #f5a623;
}
.radio-dot {
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
}
.radio-option input:checked + .radio-dot {
  border-color: #f5a623;
}
.radio-option input:checked + .radio-dot::after {
  background-color: #f5a623;
}
