.turnaround-buttons-wrapper {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}
.turnaround-option {
  border: 1px solid #ccc;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  text-align: center;
  transition: 0.2s all ease;
}
.turnaround-option.selected {
  border-color: #334862;
  background-color: #e6efff;
}
.turnaround-option strong {
  display: block;
  color: #334862;
}
