body {
  margin: 0;
  padding: 0;
  /* background: url(image.jpg); */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-box {
  max-width: 460px;
  background-color: #111;
  color: #fff;
  font-family: "Montserrat";
  padding: 60px 30px;
}

.terms-text {
  padding: 0 20px;
  height: 400px;
  overflow-y: auto;
  font-size: 14px;
  font-weight: 500;
  color: #f1f1f1;
}

.terms-text::-webkit-scrollbar {
  width: 2px;
  background-color: #282828;
}

.terms-text::-webkit-scrollbar-thumb {
  background-color: #12489e;
}

.terms-text h2 {
  text-transform: uppercase;
}

.terms-box h4 {
  font-size: 13px;
  text-align: center;
  padding: 0 40px;
}

.terms-box h4 span {
  color: #12489e;
}

.buttons {
  display: flex;
  padding: 0 20px;
  justify-content: space-between;
}

.btn {
  height: 50px;
  width: calc(50% - 6px);
  border: 0;
  border-radius: 6px;
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s linear;
  cursor: pointer;
}

.red-btn {
  background-color: #12489e;
}

.gray-btn {
  background-color: #282828;
}

.btn:hover {
  opacity: 0.6;
}

.accordion {
  max-width: 800px;
}
.accordion .contentBx {
  position: relative;
  margin: 10px 20px;
}

.accordion .contentBx .label {
  position: relative;
  padding: 10px;
  background: #cccdcd;
  color: #333333;
  cursor: pointer;
}
.accordion .contentBx .label::before {
  content: "+";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 2em;
  color: #12489e;
}

.accordion .contentBx.active .label::before {
  content: "-";
}

.accordion .contentBx .content {
  position: relative;
  background: #fff;
  color: #333333;
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  overflow-y: auto;
}

.accordion .contentBx.active .content {
  padding: 10px;
  height: 100%;
}
