.hero-section {
  width: 100%;
  height: 100dvh;
  background: linear-gradient(to bottom, white, #f0c6c6);
}

.hero-container {
  height: 100dvh;
}

.logo-gm {
  position: absolute;
  top: 32px;
}

.benefit-card {
  background-color: #efefef;
  border-radius: 24px;
}

.credit-sim-box, .credit-limit, .buyback {
  background-color: #f7f7f7;
  border-radius: 24px;
}

.credit-sim-box input, .credit-limit input, .buyback input {
  border-radius: 14px;
  border: solid 0.3px #939598;
  background-color: #efefef;
  padding: 10px 20px;
  width: 100%;
  font-weight: 500;
}

.tenor-group input[type="radio"] {
  display: none;
}

.tenor-group {
    width: 100%;
}

.tenor-group label {
  background: #efefef;
  border: 1px solid #939598;
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.2s;
  padding: 10px 20px;
}

.tenor-group input[type="radio"]:checked + label {
  background: #f0c6c6;
  border: 1px solid #d20001;
  color: #000;
}

.credit-sim-terms button {
  width: 100%;
  background-color: #d20001;
  color: white;
  border-radius: 20px;
  border: none;
}

input[type="checkbox"] {
  display: none;
}

.custom-check {
  width: 24px;
  height: 24px;
  padding: 10px;
  margin-top: 3px;
  border-radius: 8px;
  background: #efefef;
  border: 1px solid #939598;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.custom-check::after {
  content: "✓";
  font-size: 16px;
  color: #939598;
  font-weight: bold;
}

input[type="checkbox"]:checked + .custom-check {
  background: #d20001;
  border: 1px solid #d20001;
}

input[type="checkbox"]:checked + .custom-check::after {
  color: #fff;
}

.credit-sim-result {
  background-color: #f0c6c6;
  border: solid 1px #d20001;
  border-radius: 24px;
}

.credit-sim-result a {
  font-weight: 500;
  color: white;
  text-decoration: none;
  background-color: #d20001;
  border-radius: 14px;
}

.credit-limit select {
    width: 100%;
    border: 1px solid #939598;
    background-color: #efefef;
    border-radius: 18px;
    color: black;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.credit-limit textarea {
    width: 100%;
    border: 1px solid #939598;
    background-color: #efefef;
    border-radius: 18px;
    color: black;
    outline: none;
}

.maps-embed iframe {
  border-radius: 24px;
}