
    :root {
      --tc-green: #4CAF50;
      --tc-green-dark: #2e7d32;
      --tc-green-mid: #43a047;
      --tc-teal: #26C6DA;
      --tc-teal-dark: #00838f;
      --tc-grad: linear-gradient(135deg, #2e7d32 0%, #43a047 30%, #26a69a 65%, #0097a7 100%);
      --tc-grad-h: linear-gradient(90deg, #4CAF50, #26C6DA);
      --tc-dark: #1a2e20;
      --tc-text: #1c3226;
      --tc-sub: #3d5c45;
      --tc-light-bg: #f2fbf4;
      --tc-light-teal: #e0f7fa;
      --tc-border: #c8e6c9;
      --tc-border-t: #b2ebf2;
      --white: #ffffff;
    }

   

    .brochure {      
      background: #fff;
      color: var(--tc-text);
      font-size: 13px;
      line-height: 1.6;
      box-shadow: 0 12px 60px rgba(0, 0, 0, 0.45);
    }

    /* ─── COVER ─── */
    .cover {
      background: var(--tc-grad);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 44px 0;
      overflow: hidden;
    }

    .cover::before {
      content: '';
      position: absolute;
      top: -90px;
      right: -90px;
      width: 440px;
      height: 440px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.10);
      box-shadow: inset 0 0 0 55px rgba(255, 255, 255, 0.04), inset 0 0 0 110px rgba(255, 255, 255, 0.02);
    }

    .cover::after {
      content: '';
      position: absolute;
      top: 0;
      right: -80px;
      width: 280px;
      height: 100%;
      background: linear-gradient(180deg, rgba(38, 198, 218, 0.13) 0%, rgba(0, 150, 170, 0.06) 100%);
      transform: skewX(-7deg);
    }

    .cover-accent-line {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(38, 198, 218, 0.7), rgba(255, 255, 255, 0.15));
    }

    .cover-logo {
      position: absolute;
      top: 32px;
      left: 48px;
    }

    .cover-logo img {
      height: 48px;
      width: auto;
    }

    .ms-badge-img {
      position: absolute;
      top: 24px;
      right: 40px;
      height: 80px;
      width: auto;
      z-index: 2;
    }

    .cover-eyebrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2.6px;
      color: rgba(255, 255, 255, 0.55);
      text-transform: uppercase;
      margin-bottom: 12px;
      position: relative;
      z-index: 2;
    }

    .cover h1 {
      font-family: 'DM Serif Display', serif;
      font-size: 42px;
      font-weight: 400;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 16px;
      position: relative;
      z-index: 2;
      max-width: 560px;
    }

    .cover h1 .accent {
      color: #FFD700;
    }

    .cover-sub {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.72);
      max-width: 520px;
      line-height: 1.7;
      position: relative;
      z-index: 2;
      font-style: italic;
    }

    /* ─── SECTIONS ─── */
    .section {
      padding: 36px 0;
      border-bottom: 1px solid #d7eed8;
    }

    .section:last-of-type {
      border-bottom: none;
    }

    .section-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2.6px;
      text-transform: uppercase;
      color: var(--tc-green-mid);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, #a5d6a7, transparent);
    }

    .section h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 26px;
      font-weight: 400;
      color: var(--tc-dark);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .body-text {
      font-size: 12.5px;
      color: var(--tc-sub);
      line-height: 1.8;
    }

    /* ─── CHALLENGE CARDS ─── */
    .challenge-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 4px;
    }

    .challenge-card {
      border: 1px solid var(--tc-border);
      border-radius: 10px;
      padding: 18px;
      background: var(--tc-light-bg);
      border-top: 3px solid var(--tc-green-mid);
    }

    .challenge-card.teal {
      border-top-color: var(--tc-teal-dark);
      background: var(--tc-light-teal);
      border-color: var(--tc-border-t);
    }

    .challenge-card.mid {
      border-top-color: #43a047;
    }

    .challenge-icon {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .challenge-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--tc-dark);
      margin-bottom: 6px;
    }

    .challenge-desc {
      font-size: 12px;
      color: var(--tc-sub);
      line-height: 1.6;
    }

    /* ─── VALUE CARDS ─── */
    .value-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 11px;
      margin-bottom: 16px;
    }

    .value-card {
      display: flex;
      gap: 13px;
      padding: 16px;
      background: var(--tc-light-bg);
      border: 1px solid var(--tc-border);
      border-radius: 10px;
      align-items: flex-start;
    }

    .value-card.teal {
      background: var(--tc-light-teal);
      border-color: var(--tc-border-t);
    }

    .value-icon-box {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      border-radius: 8px;
      background: var(--tc-grad-h);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }

    .value-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--tc-dark);
      margin-bottom: 4px;
    }

    .value-desc {
      font-size: 12px;
      color: var(--tc-sub);
      line-height: 1.55;
    }

    .mandate-box {
      background: linear-gradient(135deg, #e8f5e9, #e0f7fa);
      border: 1px solid #a5d6a7;
      border-radius: 10px;
      padding: 16px 20px;
    }

    .mandate-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--tc-dark);
      margin-bottom: 8px;
      letter-spacing: 0.3px;
    }

    .mandate-item {
      font-size: 12px;
      color: var(--tc-sub);
      line-height: 1.7;
      display: flex;
      gap: 8px;
    }

    .mandate-item::before {
      content: '✓';
      color: var(--tc-green-mid);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ─── AUDIENCE ─── */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .audience-card {
      border: 1px solid var(--tc-border);
      border-radius: 10px;
      padding: 18px;
      background: var(--tc-light-bg);
      text-align: center;
    }

    .audience-icon {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .audience-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--tc-dark);
      margin-bottom: 6px;
      line-height: 1.35;
    }

    .audience-desc {
      font-size: 12px;
      color: var(--tc-sub);
      line-height: 1.55;
    }

    /* ─── PILLARS ─── */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 11px;
      margin-bottom: 14px;
    }

    .pillar-card {
      border: 1px solid var(--tc-border);
      border-radius: 10px;
      padding: 16px 18px;
      background: var(--tc-light-bg);
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .pillar-num {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--tc-grad-h);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pillar-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--tc-dark);
      margin-bottom: 4px;
    }

    .pillar-desc {
      font-size: 12px;
      color: var(--tc-sub);
      line-height: 1.55;
    }

    .target-box {
      background: linear-gradient(135deg, #e8f5e9, #e0f7fa);
      border: 1px solid #a5d6a7;
      border-radius: 10px;
      padding: 14px 18px;
      font-size: 12px;
      color: var(--tc-sub);
      line-height: 1.7;
    }

    .target-box strong {
      color: var(--tc-dark);
    }

    /* ─── ARCHITECTURE ─── */
    .arch-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 11px;
    }

    .arch-card {
      border-radius: 10px;
      padding: 18px;
      border: 1px solid var(--tc-border);
    }

    .arch-card:nth-child(1) {
      background: var(--tc-light-bg);
    }

    .arch-card:nth-child(2) {
      background: #fff8e1;
      border-color: #ffe082;
    }

    .arch-card:nth-child(3) {
      background: var(--tc-light-teal);
      border-color: var(--tc-border-t);
    }

    .arch-icon {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .arch-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--tc-dark);
      margin-bottom: 3px;
    }

    .arch-sub {
      font-size: 11px;
      color: #888;
      margin-bottom: 10px;
      font-style: italic;
    }

    .arch-item {
      font-size: 12px;
      color: var(--tc-sub);
      line-height: 1.7;
      display: flex;
      gap: 6px;
    }

    .arch-item::before {
      content: '·';
      color: var(--tc-green-mid);
      font-weight: 700;
    }

    /* ─── PHASES ─── */
    .phases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 11px;
    }

    .phase-card {
      border-radius: 10px;
      padding: 18px;
      border: 1px solid var(--tc-border);
      position: relative;
      overflow: hidden;
    }

    .phase-card:nth-child(1) {
      background: var(--tc-light-bg);
      border-top: 3px solid #4CAF50;
    }

    .phase-card:nth-child(2) {
      background: #fff8e1;
      border-color: #ffe082;
      border-top: 3px solid #FFC107;
    }

    .phase-card:nth-child(3) {
      background: var(--tc-light-teal);
      border-color: var(--tc-border-t);
      border-top: 3px solid var(--tc-teal);
    }

    .phase-num {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: #aaa;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .phase-dur {
      display: inline-block;
      font-size: 9px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 20px;
      margin-bottom: 8px;
    }

    .phase-card:nth-child(1) .phase-dur {
      background: #c8e6c9;
      color: #1b5e20;
    }

    .phase-card:nth-child(2) .phase-dur {
      background: #ffe082;
      color: #7a5000;
    }

    .phase-card:nth-child(3) .phase-dur {
      background: #b2ebf2;
      color: #004d58;
    }

    .phase-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--tc-dark);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .phase-item {
      font-size: 12px;
      color: var(--tc-sub);
      line-height: 1.7;
      display: flex;
      gap: 6px;
    }

    .phase-item::before {
      content: '›';
      color: var(--tc-green-mid);
      font-weight: 700;
    }

    /* ─── CONTACT ─── */
    .contact-section {
      background: var(--tc-grad);
      padding: 40px 48px;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      bottom: -70px;
      right: -70px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.10);
      box-shadow: inset 0 0 0 55px rgba(255, 255, 255, 0.04);
    }

    .contact-left h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 24px;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .contact-item {
      display: flex;
      gap: 12px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.83);
    }

    .ci-label {
      color: rgba(255, 255, 255, 0.44);
      font-size: 12px;
      min-width: 58px;
      padding-top: 1px;
    }

    .contact-cta {
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .cta-box {
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 12px;
      padding: 22px 28px;
      text-align: center;
    }

    .cta-url {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 5px;
    }

    .cta-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.55);
    }
  @media (max-width: 768px) { 
    .contact-cta {width: 100%;}
    .value-card,.pillar-card {
        display: block;
    }
    .value-icon-box,.pillar-num {
        margin-bottom: 10px;
    }
    .section {
    padding: 30px 20px;
    }
    .phases-grid,.arch-grid,.audience-grid,.challenge-grid {
      grid-template-columns: repeat(1, 1fr);
    }
    .contact-section {
      flex-direction: column;
      text-align: center;
    }
  }