.motive-section {
    all: revert-layer;
    padding: var(--spacing-5xl, 60px) var(--spacing-lg, 20px);
    background: transparent;
    font-family: var(--typography-font-family, Inter), sans-serif;
    color: var(--text-primary, #000);
  }

  .motive-section .logo-text-split {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    gap: var(--spacing-4xl, 40px);
    max-width: 1200px;
    margin: 0 auto;
  }

  .motive-section .logo-side {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .motive-section .logo-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .motive-section .text-side h1 {
    font-family: var(--header-font, Industry), sans-serif;
    font-size: var(--font-heading-lg, 36px);
    font-weight: var(--font-weight-bold, 700);
    margin-bottom: var(--spacing-md, 16px);
    color: var(--text-primary, #000);
  }

  .motive-section .text-side p {
    font-size: var(--font-body-lg, 18px);
    line-height: 1.6;
    color: var(--text-secondary, #333);
    margin: 0;
  }

  /* Responsive Adjustments */
  @media (max-width: 900px) {
    .motive-section .logo-text-split {
      grid-template-columns: 1fr;
      text-align: center;
      gap: var(--spacing-3xl, 32px);
    }

    /* Force logo above text on mobile */
    .motive-section .logo-side {
      order: -1;
    }

    .motive-section .logo-img {
      max-width: 240px;
      margin: 0 auto;
    }

    .motive-section .text-side h1 {
      font-size: var(--font-heading-md, 28px);
    }
  }

  @media (max-width: 600px) {
    .motive-section .text-side p {
      font-size: var(--font-body-md, 16px);
    }
  }
</style>
