.consultant-page {

  .page-detail {
    color: white;
    font-size: 2rem;
    font-weight: bold;
  }

  .page-detail p {
    margin-bottom: 1rem !important;
    margin-top: 1.5rem !important;
  }

  .page-detail p:last-child {
    margin-top: 0.25rem !important;
    font-size: 2.625rem;
    font-weight: 800;
  }

  .consultant-form-wrapper {
    margin-top: 50px;
    margin-bottom: calc(15% + 50px);
  }

  /* Form Styling */
  #addContact {
    background-color: var(--tm);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
  }

  #addContact .form-control {
    background-color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 0;
    color: #333;
  }

  #addContact .form-control::placeholder {
    color: #999;
  }

  #addContact .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
  }

  #addContact select.form-control {
    color: #999;
  }

  #addContact select.form-control option {
    color: #333;
  }

  #addContact .input {
    margin-bottom: 15px;
  }

  #addContact .label-solution {
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
  }

  #addContact .dropdown {
    margin-bottom: 10px;
  }

  #addContact input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
  }

  #addContact .name-solution {
    color: white;
    font-size: 14px;
    vertical-align: middle;
  }

  #addContact .btn_submit {
    background-color: white;
    color: var(--tm);
    border: 2px solid white;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s ease;
  }

  #addContact .btn_submit:hover {
    opacity: 0.8;
  }

  #addContact .btn_submit p {
    margin: 0;
    font-size: 14px;
  }

  #addContact .loading {
    margin-top: 15px;
  }

  #addContact .message-infor {
    color: white;
    margin-top: 15px;
    font-size: 14px;
  }

  /* Contact Info Styling */

  .contact-info-item {
    margin-bottom: 2rem;
  }

  .contact-label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--tm);
  }

  .contact-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--tm);
    font-family: "FS Magistral";
    line-height: 1.2;
  }

  .contact-info-item:first-of-type .contact-value {
    font-size: 2.938rem;
  }

  .contact-banner {
    position: absolute;
    transform: translateY(-60%);
    width: clamp(10%, 50vw, 50%);
    right: min(2%, 2vw);
  }

  .contact-banner img {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  /* Responsive */
  @media (max-width: 991px) {
    .consultant-form-wrapper {
      margin-bottom: 80px;
    }

    .contact-banner {
      position: unset;
      transform: unset;
      width: 100%;
    }

    .contact-info-wrapper {
      margin-top: 30px;
    }

    .contact-value {
      font-size: 24px;
    }
  }
}
