
    .tps-careers-wrap {
      --tps-dark: #111827;
      --tps-blue: #14213d;
      --tps-red: #d71920;
      --tps-red-dark: #b9151b;
      --tps-gray: #f5f7fa;
      --tps-border: #e5e7eb;
      --tps-text: #4b5563;
      --tps-white: #ffffff;

      font-family: Arial, Helvetica, sans-serif;
      color: var(--tps-dark);
      background: var(--tps-white);
      line-height: 1.6;
    }

    .tps-careers-container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 72px 20px;
    }

    .tps-careers-eyebrow {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--tps-red);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .tps-careers-title {
      margin: 0 0 18px;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.12;
      font-weight: 800;
      color: var(--tps-dark);
    }

    .tps-careers-lead {
      max-width: 780px;
      margin: 0;
      color: var(--tps-text);
      font-size: 18px;
    }

    .tps-careers-hero {
      background:
        linear-gradient(120deg, rgba(20, 33, 61, 0.94), rgba(17, 24, 39, 0.88));
      color: var(--tps-white);
    }

    .tps-careers-hero .tps-careers-title,
    .tps-careers-hero .tps-careers-lead {
      color: var(--tps-white);
    }

    .tps-careers-hero .tps-careers-container {
      padding-top: 96px;
      padding-bottom: 96px;
    }

    .tps-careers-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }

    .tps-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 24px;
      border-radius: 4px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .tps-btn-primary {
      background: var(--tps-red);
      color: var(--tps-white);
      border: 1px solid var(--tps-red);
    }

    .tps-btn-primary:hover {
      background: var(--tps-red-dark);
      border-color: var(--tps-red-dark);
      color: var(--tps-white);
    }

    .tps-btn-secondary {
      background: transparent;
      color: var(--tps-white);
      border: 1px solid rgba(255, 255, 255, 0.7);
    }

    .tps-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      color: var(--tps-white);
    }

    .tps-section-muted {
      background: var(--tps-gray);
    }

    .tps-section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: 36px;
    }

    .tps-section-head h2 {
      margin: 0;
      font-size: clamp(26px, 3vw, 38px);
      line-height: 1.2;
      color: var(--tps-dark);
    }

    .tps-section-head p {
      max-width: 560px;
      margin: 8px 0 0;
      color: var(--tps-text);
    }

    .tps-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .tps-info-card {
      background: var(--tps-white);
      border: 1px solid var(--tps-border);
      border-radius: 10px;
      padding: 28px;
      box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
    }

    .tps-info-card-icon {
      width: 44px;
      height: 44px;
      margin-bottom: 18px;
      border-radius: 50%;
      background: rgba(215, 25, 32, 0.1);
      color: var(--tps-red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
    }

    .tps-info-card h3 {
      margin: 0 0 10px;
      font-size: 20px;
      color: var(--tps-dark);
    }

    .tps-info-card p {
      margin: 0;
      color: var(--tps-text);
      font-size: 15px;
    }

    .tps-jobs-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 28px;
      align-items: start;
    }

    .tps-jobs-sidebar {
      background: var(--tps-blue);
      color: var(--tps-white);
      border-radius: 10px;
      padding: 28px;
      position: sticky;
      top: 24px;
    }

    .tps-jobs-sidebar h3 {
      margin: 0 0 14px;
      font-size: 22px;
      color: var(--tps-white);
    }

    .tps-jobs-sidebar p {
      margin: 0 0 22px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 15px;
    }

    .tps-jobs-sidebar ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .tps-jobs-sidebar li {
      padding: 10px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
    }

    .tps-job-card {
      background: var(--tps-white);
      border: 1px solid var(--tps-border);
      border-radius: 10px;
      padding: 32px;
      transition: all 0.2s ease;
    }

    .tps-job-card:hover {
      border-color: rgba(215, 25, 32, 0.35);
      box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
      transform: translateY(-2px);
    }

    .tps-job-top {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 18px;
    }

    .tps-job-title {
      margin: 0 0 8px;
      font-size: 26px;
      line-height: 1.25;
      color: var(--tps-dark);
    }

    .tps-job-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .tps-job-meta li {
      background: var(--tps-gray);
      border: 1px solid var(--tps-border);
      border-radius: 999px;
      padding: 5px 11px;
      color: var(--tps-text);
      font-size: 13px;
      font-weight: 600;
    }

    .tps-job-tag {
      flex: 0 0 auto;
      height: fit-content;
      background: rgba(215, 25, 32, 0.1);
      color: var(--tps-red);
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .tps-job-summary {
      margin: 0 0 22px;
      color: var(--tps-text);
      font-size: 16px;
    }

    .tps-job-details {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin: 22px 0;
      padding-top: 22px;
      border-top: 1px solid var(--tps-border);
    }

    .tps-job-details h4 {
      margin: 0 0 10px;
      font-size: 16px;
      color: var(--tps-dark);
    }

    .tps-job-details ul {
      margin: 0;
      padding-left: 18px;
      color: var(--tps-text);
      font-size: 15px;
    }

    .tps-job-details li {
      margin-bottom: 7px;
    }

    .tps-application-box {
      margin-top: 24px;
      padding: 24px;
      background: var(--tps-gray);
      border: 1px solid var(--tps-border);
      border-radius: 8px;
    }

    .tps-application-box h4 {
      margin: 0 0 10px;
      font-size: 18px;
      color: var(--tps-dark);
    }

    .tps-application-box p {
      margin: 0 0 12px;
      color: var(--tps-text);
      font-size: 15px;
    }

    .tps-application-box ul {
      margin: 0;
      padding-left: 18px;
      color: var(--tps-text);
      font-size: 15px;
    }

    .tps-job-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      margin-top: 26px;
    }

    .tps-job-note {
      margin: 0;
      color: var(--tps-text);
      font-size: 13px;
    }

    .tps-job-footer .tps-btn-secondary {
      color: var(--tps-red);
      border-color: rgba(215, 25, 32, 0.35);
      background: transparent;
    }

    .tps-job-footer .tps-btn-secondary:hover {
      background: rgba(215, 25, 32, 0.08);
      color: var(--tps-red-dark);
    }

    .tps-process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      counter-reset: process;
    }

    .tps-process-step {
      background: var(--tps-white);
      border: 1px solid var(--tps-border);
      border-radius: 10px;
      padding: 24px;
      position: relative;
    }

    .tps-process-step::before {
      counter-increment: process;
      content: "0" counter(process);
      display: block;
      margin-bottom: 16px;
      color: var(--tps-red);
      font-size: 22px;
      font-weight: 800;
    }

    .tps-process-step h3 {
      margin: 0 0 8px;
      font-size: 18px;
      color: var(--tps-dark);
    }

    .tps-process-step p {
      margin: 0;
      color: var(--tps-text);
      font-size: 14px;
    }

    .tps-apply-box {
      background: var(--tps-blue);
      color: var(--tps-white);
      border-radius: 12px;
      padding: 40px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .tps-apply-box h2 {
      margin: 0 0 10px;
      color: var(--tps-white);
      font-size: clamp(26px, 3vw, 36px);
    }

    .tps-apply-box p {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      max-width: 720px;
    }

    .tps-apply-contact {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 15px;
    }

    .tps-apply-contact a {
      color: var(--tps-white);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    @media (max-width: 960px) {
      .tps-section-head,
      .tps-job-top,
      .tps-job-footer,
      .tps-apply-box {
        display: block;
      }

      .tps-grid-3,
      .tps-jobs-layout,
      .tps-process,
      .tps-job-details {
        grid-template-columns: 1fr;
      }

      .tps-jobs-sidebar {
        position: static;
      }

      .tps-job-tag {
        display: inline-block;
        margin-top: 14px;
      }

      .tps-job-footer .tps-btn,
      .tps-apply-box .tps-btn {
        margin-top: 18px;
      }
    }

    @media (max-width: 560px) {
      .tps-careers-container {
        padding: 52px 16px;
      }

      .tps-careers-hero .tps-careers-container {
        padding-top: 72px;
        padding-bottom: 72px;
      }

      .tps-info-card,
      .tps-job-card,
      .tps-jobs-sidebar,
      .tps-process-step,
      .tps-apply-box {
        padding: 22px;
      }
    }
  