    html {
      scroll-behavior: smooth;
    }

    :root {
      --bg-color: #ffffff;
      --text-color: #111111;
      --muted-text: #5f5f5f;
      --border-color: #e6e6e6;
      --surface-color: #ffffff;
      --link-color: #3b6cff;
      --accent-blue: #3b6cff;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background-color: var(--bg-color);
      color: var(--text-color);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      line-height: 1.65;
    }

    a {
      color: var(--link-color);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .site-header {
      padding: 6px 0;
      position: sticky;
      top: 0;
      background-color: var(--bg-color);
      z-index: 10;
    }

    .site-header img {
      height: 44px;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: nowrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .brand-logo {
      height: 44px;
      width: auto;
      flex-shrink: 0;
      display: block;
    }

    .brand-name {
      font-size: 22px;
      font-weight: 600;
      line-height: 1.1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      color: var(--text-color);
    }

    .site-nav {
      display: none;
      gap: 32px;
      font-size: 16px;
    }

    .site-nav a {
      color: var(--text-color);
    }

    .site-nav a:hover {
      color: var(--link-color);
    }

    .menu-toggle {
      display: inline-flex;
      background: none;
      border: none;
      padding: 6px 8px;
      font-size: 16px;
      color: var(--text-color);
      cursor: pointer;
      align-items: center;
      gap: 8px;
    }

    .menu-toggle .menu-icon {
      width: 18px;
      height: 2px;
      background-color: var(--text-color);
      display: inline-block;
      position: relative;
    }

    .menu-toggle .menu-icon::before,
    .menu-toggle .menu-icon::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background-color: var(--text-color);
    }

    .menu-toggle .menu-icon::before {
      top: -6px;
    }

    .menu-toggle .menu-icon::after {
      top: 6px;
    }

    .mobile-nav {
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      background-color: var(--bg-color);
      border-top: 1px solid var(--border-color);
      display: none;
      flex-direction: column;
      padding: 12px 24px 20px 24px;
      z-index: 20;
    }

    .mobile-nav a {
      padding: 12px 0;
      font-size: 16px;
      color: var(--text-color);
      text-decoration: none;
    }

    .mobile-nav.open {
      display: flex;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .page-main {
      padding: 0;
    }

    .contact-shell {
      max-width: 720px;
      margin: 0 auto;
    }

    .contact-hero {
      margin: 0 0 40px 0;
      max-width: none;
    }

    .hero-title {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 12px;
    }

    .hero-title img {
      width: 52px;
      height: auto;
      flex-shrink: 0;
    }

    .contact-hero h1 {
      margin: 0;
    }

    .contact-hero p {
      margin: 14px 0 0 0;
      font-size: 19px;
      color: var(--muted-text);
      max-width: none;
      text-align: center;
    }

    .form-wrap {
      max-width: none;
      margin: 16px 0 0 0;
    }

    .field {
      margin-top: 20px;
    }

    .field:first-child {
      margin-top: 0;
    }

    .field-hidden {
      display: none;
    }

    label {
      display: block;
      font-size: 14px;
      color: var(--text-color);
      margin-bottom: 8px;
      font-weight: 500;
    }

    input {
      width: 100%;
      font-size: 16px;
      padding: 12px 14px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      font-family: inherit;
      color: var(--text-color);
      background-color: #ffffff;
    }

    input:focus,
    .ql-container:focus-within,
    .ql-toolbar:focus-within {
      outline: none;
      border-color: #b7b7b7;
    }

    .ql-toolbar.ql-snow {
      border: 1px solid var(--border-color);
      border-bottom: none;
      border-radius: 8px 8px 0 0;
      background-color: #fcfcfc;
    }

    .ql-container.ql-snow {
      border: 1px solid var(--border-color);
      border-radius: 0 0 8px 8px;
      font-size: 16px;
      color: var(--text-color);
      font-family: inherit;
    }

    .ql-editor {
      line-height: 1.6;
    }

    .submit-btn {
      margin-top: 20px;
      background-color: #111111;
      color: #ffffff;
      border: none;
      border-radius: 999px;
      padding: 12px 24px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      min-width: 148px;
    }

    .form-error {
      margin-top: 12px;
      font-size: 14px;
      color: #a42525;
      min-height: 21px;
    }

    .success-message {
      margin: 0;
      font-size: 18px;
      color: var(--muted-text);
    }

    /* Executive Action Block (Connect Page) */
    .executive-action-block {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 32px;
      margin: 32px 0;
      border-left: 4px solid var(--accent-blue);
      background-color: rgba(59, 108, 255, 0.04);
      border-radius: 0 8px 8px 0;
      text-decoration: none;
      transition: all 0.25s ease;
      color: var(--text-color);
    }

    .executive-action-block:hover {
      background-color: rgba(59, 108, 255, 0.10);
      transform: translateX(4px);
      text-decoration: none;
    }

    .action-content {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    /* Groups the icon and text together on the left */
    .action-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    /* Styles the SVG to match the brand accent color */
    .action-icon {
      color: var(--accent-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .action-title {
      font-size: 20px;
      font-weight: 600;
      color: var(--accent-blue);
      margin: 0;
    }

    .action-desc {
      font-size: 16px;
      color: var(--muted-text);
      margin: 0;
    }

    .action-arrow {
      font-size: 24px;
      color: var(--accent-blue);
      transition: transform 0.25s ease;
    }

    .executive-action-block:hover .action-arrow {
      transform: translateX(4px);
    }

    .section {
      margin: 72px 0;
    }

    .section h2,
    .section h3 {
      margin-bottom: 14px;
    }

    .section p {
      margin-bottom: 18px;
    }

    .card {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,0.06);
      padding: 28px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }

    button,
    .btn {
      transition: all 0.2s ease;
    }

    button:hover,
    .btn:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    input:focus-visible,
    textarea:focus-visible,
    button:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(45,92,255,0.35);
      outline-offset: 2px;
    }

    .footer {
      padding: 48px 24px;
      border-top: 1px solid var(--border-color);
      text-align: center;
      font-size: 14px;
      color: var(--muted-text);
    }

    @media (min-width: 768px) {
      .header-inner {
        padding: 0;
      }

      .brand-logo {
        height: 44px;
      }

      .brand-name {
        font-size: 40px;
      }

      .site-nav {
        display: flex;
      }

      .menu-toggle {
        display: none;
      }

      .container {
        padding: 0 24px;
      }

      .form-card {
        padding: 40px;
      }
    }

    @media (max-width: 767px) {
      .container {
        padding: 0 24px;
      }

      .hero-title {
        align-items: center;
      }
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
      .executive-action-block {
        padding: 20px 24px;
      }

      .action-left {
        gap: 16px;
      }

      .action-icon svg {
        width: 28px;
        height: 28px;
      }

      .action-title {
        font-size: 18px;
      }

      .action-desc {
        font-size: 15px;
      }
    }
