* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }
  
  .demoPageBody {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: auto;
    z-index: 99999;
  }
  
  @media (max-width: 768px) {
    .demoPageBody {
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
  
    .demoPageBody::-webkit-scrollbar {
      display: none;
    }
  }
  

  .demoPageContainer {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0px 5rem 4rem;
    z-index: 99;
  }
  
  .demoHero {
    padding: 24px 0 32px;
    text-align: center;
  }
  
  .demoHeroContent {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .demoTitle {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-text-primary);
    margin-bottom: 16px;
  }
  
  .demoSubtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
  }
  
  .demoFormSection {
    display: flex;
    justify-content: space-around;
    padding: 32px 0 64px;
  }
  
  .floatingImage {
    padding-top: 40px;
    width: 100%;
    height: 700px;
    border-radius: 12px;
  }
  
  .floatingImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .floatingImage .illustrationContainer {
    position: relative;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
  }
  
  .floatingImage .stackedImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  
  .floatingImage .imageTop {
    z-index: 2;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  .floatingImage .floatingElement {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: float 4s ease-in-out infinite alternate;
  }
  
  #headTranslate {
    animation: float 5s ease-in-out infinite alternate;
    animation-delay: 0.5s;
  }
  
  @media (max-width: 600px) {
    .demoPageContainer {
      margin-top: 40px;
      padding: 0 20px;
    }
  
    .demoFormSection {
      flex-direction: column-reverse;
    }
  
    .floatingImage {
      width: 100%;
      height: 400px;
      overflow: visible;
    }
  }
  
  .demoFormContainer {
    display: flex;
    flex-direction: column;
    background-color: var(--color-background-secondary);
    padding: 1.2rem;
    border-radius: 24px;
    color: var(--color-text-primary);
    box-shadow: 11px 12px 20px var(--drop-shadow-color);
    border: var(--color-outline-primary);
    gap: 24px;
    max-width: 1200px;
    min-width: 600px;
    height: fit-content;
  }
  
  .formRow {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .formGroup,
  .formGroupFull {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 240px;
  }
  
  .formGroupFull {
    width: 100%;
  }
  
  .demoFormContainer label {
    color: var(--color-text-input);
    margin-bottom: 6px;
    font-size: 14px;
  }
  
  .demoFormContainer input,
  .demoFormContainer select {
    background-color: var(--color-background-tertiary);
    border: var(--color-outline-secondary);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-text-input);
    font-size: 14px;
    outline: none;
  }
  
  .demoFormContainer input:focus,
  .demoFormContainer select:focus,
  .demoFormContainer textarea:focus {
    border: var(--color-outline-primary);
  }
  
  .demoFormContainer textarea {
    background-color: var(--color-background-tertiary);
    border: var(--color-outline-secondary);
    border-radius: 8px;
    padding: 12px 16px;
    min-height: 100px;
    color: var(--color-text-input);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    resize: vertical;
  }
  
  .demoFormContainer input::placeholder,
  .demoFormContainer textarea::placeholder {
    color: var(--color-text-tertiary);
  }
  
  .demoFormContainer select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
  }
  
  .checkboxRow {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .demoFormContainer .customCheckbox {
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--color-background-tertiary);
    border: var(--color-outline-secondary);
    border-radius: 6px;
    cursor: pointer;
    display: grid;
    place-content: center;
    margin: 0px;
    padding: 0px;
    padding-bottom: 3px;
    box-sizing: border-box;
  }
  
  .customCheckbox:checked {
    background-color: var(--node-blue);
    border-color: var(--node-blue);
  }
  
  .customCheckbox:checked::after {
    content: "";
    width: 6px;
    height: 10px;
    border: solid var(--node-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .btnSubmit {
    width: 100%;
    padding: 14px;
    background: var(--background-color-button-nstudio-default);
    color: var(--node-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  .btnSubmit:hover {
    background: var(--background-color-button-nstudio-hover);
  }
  
  .btnSubmit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .formTerms {
    font-size: 12px;
    color: var(--color-text-tertiary);
    text-align: left;
    line-height: 1.5;
  }
  
  .formTerms a {
    color: var(--color-text-highlight);
    text-decoration: underline;
  }
  
  @media (max-width: 600px) {
    .demoFormContainer {
      box-shadow: 0px 0px 20px var(--drop-shadow-color);
      min-width: 290px;
    }
  }