<style>
  /* Reset styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.5;
    background: #FFFFFF;
  }

  /* Container styles */
  .demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    background: #FFFFFF;
  }

  /* Content section */
  .demo-content {
    flex: 1;
    max-width: 600px;
  }

  .tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 74, 0.1);
    color: #ff6b4a;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1F2937;
    margin: 0;
    line-height: 1.2;
  }

  .highlight {
    color: #ff6b4a;
  }

  .subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    margin: 1.5rem 0 2rem;
    line-height: 1.6;
  }

  /* Form section */
  .demo-form {
    flex: 1;
    max-width: 500px;
    padding: 2rem;
    background: #FFFFFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
  }

  .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    color: #1F2937;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus {
    border-color: #ff6b4a;
  }

  .form-group input::placeholder {
    color: #9ca3af;
  }

  /* Button styles */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
  }

  .btn-primary {
    background: #ff6b4a;
    color: white;
  }

  .btn-primary:hover {
    background: #ff5a36;
    transform: translateY(-1px);
  }

  .btn-dark {
    background: #1F2937;
    color: white;
  }

  .btn-dark:hover {
    background: #111827;
    transform: translateY(-1px);
  }

  .button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
  }

  .job-description-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
    max-width: 90%;
  }

  .button-group {
    display: flex;
    gap: 1rem;
    width: 100%;
  }

  .button-group .btn {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
  }

  .copy-button {
    width: 100%;
    padding: 0.66rem;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
  }

  .copy-button:hover {
    background: #E5E7EB;
  }

  .copy-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
  }

  .copy-text {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
  }

  /* Results styles */
  .results-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: #FFFFFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: none;
  }

  .results-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E5E7EB;
  }

  .company-info {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .company-info label {
    font-weight: 600;
    color: #0a1f2e;
    min-width: 120px;
  }

  .company-info p {
    margin: 0;
    color: #4B5563;
    font-size: 1.1rem;
  }

  .job-description-box {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 90%;
    white-space: pre-wrap;
    line-height: 1.6;
    font-size: 1rem;
    color: #374151;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }

  .job-description-box p {
    margin: 0;
    padding: 0;
  }

  /* HubSpot Meetings Styles */
  :not(.hs-inline-edit) .hs-meetings-placeholder {
    display: none; 
  }

  .hs-inline-edit .hs-meetings-placeholder {
    display: block!important;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif!important;
    font-size: 14px!important;
    text-align: center!important;
    background-color: #f5f8fa!important;
    margin: 2px 1px!important;
    border: 1px dashed #516f90!important;
    outline: 1px dashed #fff!important;
  }

  .hs-inline-edit .hs-meetings-placeholder > * {
    display: block!important;
    box-sizing: border-box!important;
    padding: 12px!important;
    margin: 1px!important;
    width: calc(100% - 2px)!important;  
  }

  .hs-inline-edit h3.hs-meetings-placeholder__title {
    color: #7c98b6!important;
    font-size: 14px!important;
    font-style: italic!important;
    font-weight: 700!important;
    line-height: initial!important;
    margin-bottom: 10px!important;
    margin-top: 0!important;
    padding: 0!important;  
    text-shadow: 0 -1px 0 hsla(0,0%,100%,.5)!important;
  }

  .hs-inline-edit p.hs-meetings-placeholder__description {
    color: #7c98b6!important;
    font-style: italic!important;
    line-height: 1.6!important;
    margin: 0!important;  
    text-shadow: 0 -1px 0 hsla(0,0%,100%,.5)!important;
  }

  @media (max-width: 768px) {
    .demo-container {
      flex-direction: column;
      padding: 1rem 0.5rem;
      gap: 1.5rem;
    }
    
    .demo-content {
      max-width: 100%;
      text-align: center;
      padding: 0 0.5rem;
    }

    .tag {
      margin-bottom: 0.5rem;
    }

    h1 {
      font-size: 2.25rem;
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }

    .subtitle {
      font-size: 1.1rem;
      margin: 0.75rem 0 1rem;
    }

    .demo-form {
      max-width: 100%;
      padding: 1.5rem 1rem;
      margin: 0 -0.5rem;
      width: calc(100% + 1rem);
    }

    .form-group {
      margin-bottom: 2rem;
    }

    .form-group label {
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
    }

    .form-group input {
      padding: 1.25rem;
      font-size: 1.2rem;
      border-width: 2px;
    }

    .form-group input::placeholder {
      font-size: 1.2rem;
    }

    .button-group {
      flex-direction: column;
    }

    .button-group .btn {
      width: 100%;
      min-width: 100%;
      padding: 1.25rem;
      font-size: 1.25rem;
    }

    .copy-button {
      padding: 1rem;
    }

    .copy-text {
      font-size: 1.25rem;
    }

    .copy-icon {
      width: 20px;
      height: 20px;
    }

    .company-info {
      flex-direction: column;
      gap: 0.25rem;
      margin-bottom: 1rem;
    }

    .company-info label {
      font-size: 1.2rem;
      min-width: 100%;
    }

    .company-info p {
      font-size: 1.3rem;
      padding-left: 0.5rem;
    }

    .job-description-box {
      font-size: 1.2rem;
      padding: 1.5rem;
      line-height: 1.7;
    }
  }

  @media (min-width: 769px) {
    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .form-group input {
      padding: 0.75rem 1rem;
      font-size: 1rem;
      border-width: 1px;
    }

    .form-group input::placeholder {
      font-size: 1rem;
    }

    .button-group .btn {
      font-size: 1.1rem;
      padding: 1rem 2rem;
      min-width: 200px;
    }

    .copy-button {
      padding: 0.66rem;
    }

    .copy-text {
      font-size: 1rem;
    }

    .copy-icon {
      width: 16px;
      height: 16px;
    }

    .company-info label {
      min-width: 120px;
      font-size: 1rem;
    }

    .company-info p {
      font-size: 1.1rem;
    }

    .job-description-box {
      font-size: 1rem;
      line-height: 1.6;
    }
  }
</style>