
.agree-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.personal_inf_chk.cons_radio {
  display: flex;
  align-items: center;
  margin: 0;
}

.personal_inf_chk.cons_radio p {
  margin: 0;
}

.agree-toggle {
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.agree-toggle:hover {
  background: #f5f5f5;
}

.agree-content {
  display: none;
  width: 100%;
  margin-top: 10px;
}

.agree-content.active {
  display: block;
}

.personal_inf {
  width: 100%;
  resize: none;
  background: #fafafa;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .agree-head {
    align-items: flex-start;
  }

  .agree-toggle {
    font-size: 13px;
    padding: 5px 12px;
  }

  .personal_inf {
    font-size: 13px;
  }
}