
  .consult-inquiry-page {
    width: 55rem;
    max-width: 100%;
    padding: 2.1rem 2.5rem;
  }
  .inquiry-section {
    position: relative;
  }
  .inquiry-section > svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 3.8rem;
  }
  .inquiry-section > h1 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }
  .inquiry-section > p {
    color: #424242;
    position: relative;
    line-height: 1.5;
    padding-left: 0.7rem;
    font-size: .8rem;
  }
  .inquiry-section > p::before {
    width: 0.25rem;
    height: 0.25rem;
    content: "";
    border-radius: 50%;
    background: #ccc;
    position: absolute;
    top: 0.4rem;
    left: 0;
  }
  .consent-section {
    border: 1px solid #E5E7F0;
    border-radius: 0.4rem;
    margin-top: 2rem;
  }
  .consent-content {
    border-radius: 0.4rem 0.4rem 0 0;
    padding: 1.2rem;
    background: #F5F6F9;
  }
  .consent-content > h2,
  .consent-content > p {
    font-size: 0.8rem;
    color: #424242;
    line-height: 1.6;
  }
  .consent-content > h2 {
    font-weight: 700;
    margin-bottom: .4rem;
  }
  .consent-input {
    padding: 1.2rem;
  }
  .consent-input label span {
    margin-left: .2rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #424242;
    vertical-align: middle;
  }
  .inquiry-form {
    margin-top: 2rem;
    border-top: 3px solid #BAD1E9;
  }
  .form-group {
    display: flex;
    border-bottom: 1px solid #E5E7F0;
  }
  .form-label {
    width: 13.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F7FB;
    font-size: 0.8rem;
    font-weight: 700;
    color: #424242;
  }
  .form-input {
    padding: .4rem 0.8rem;
    flex-grow: 1;
  }
  .form-input input {
    width: 100%;
    padding: 0 0.8rem;
    font-size: 0.8rem;
    height: 2.4rem;
    border: 1px solid #BDBDBD;
  }
  .form-input input::placeholder {
    color: #9e9e9e;
    font-style: normal;
  }
  .inquiry-btn-wrap {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .inquiry-btn {
    padding: 0 0.9rem;
    height: 2.4rem;
    border-radius: 0.4rem;
    background: #221E1F;
    color: #fff;
    font-size: 0.8rem;
  }

  .popup-overlay {
    background: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 1000;
  }
  .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 21rem;
    max-width: calc(100% - 3rem);
  }
  .popup-header {
    text-align: right;
    margin-bottom: .2rem;
  }
  .popup-close {
    font-size: 2.1rem;
  }

  @media (max-width: 768px) {
    .consult-inquiry-page {
      padding: 2rem 1.5rem;
    }
    .inquiry-section > svg {
      display: none;
    }
    .form-label {
      width: 8rem;
    }
  }
