
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700;800&family=JetBrains+Mono:wght@500;700&display=swap');
    
    :root {
      --brand-teal: #50B2B2;
      --brand-teal-light: #F0FAFA;
      --brand-teal-dark: #205E5E;
      --brand-orange: #FF780F;
      --brand-orange-light: #FFF5EE;
      --brand-orange-dark: #C65200;
      --slate-50: #f8fafc;
      --slate-100: #f1f5f9;
      --slate-200: #e2e8f0;
      --slate-300: #cbd5e1;
      --slate-500: #64748b;
      --slate-600: #475569;
      --slate-800: #1e293b;
      --slate-900: #0f172a;
    }

    body {
      background-color: #fafbfc;
      margin: 0;
      padding: 0;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    .kontactix-container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 24px;
      box-sizing: border-box;
    }

    .kontactix-article {
      color: var(--slate-600);
      line-height: 1.8;
      background-color: #ffffff;
      border: 1px solid var(--slate-100);
      border-radius: 24px;
      padding: 56px;
      box-shadow: 0 4px 30px rgba(15, 23, 42, 0.02);
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .kontactix-article {
        padding: 32px 20px;
        border-radius: 16px;
      }
      .kontactix-container {
        margin: 16px auto;
        padding: 0 12px;
      }
    }

    .kontactix-header {
      text-align: center;
      margin-bottom: 44px;
    }

    .kontactix-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 9999px;
      background-color: var(--brand-teal-light);
      border: 1px solid rgba(80, 178, 178, 0.15);
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 700;
      color: var(--brand-teal-dark);
      margin-bottom: 24px;
      font-family: 'JetBrains Mono', monospace;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .kontactix-tag-dot {
      height: 6px;
      width: 6px;
      border-radius: 50%;
      background-color: var(--brand-orange);
    }

    .kontactix-title {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 38px;
      line-height: 1.25;
      font-weight: 800;
      color: var(--slate-900);
      margin: 0 auto 24px auto;
      letter-spacing: -0.03em;
      max-width: 950px;
    }

    @media (max-width: 640px) {
      .kontactix-title {
        font-size: 26px;
      }
    }

    .kontactix-title-gradient {
      background: linear-gradient(135deg, var(--brand-teal), var(--slate-800), var(--brand-orange));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .kontactix-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      font-size: 13px;
      color: var(--slate-500);
      font-weight: 500;
      flex-wrap: wrap;
    }

    .kontactix-meta-divider {
      color: var(--slate-200);
    }

    .kontactix-cover {
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 48px;
      border: 1px solid var(--slate-100);
      box-shadow: 0 10px 40px -15px rgba(15, 23, 42, 0.08);
      position: relative;
    }

    .kontactix-cover img {
      width: 100%;
      height: auto;
      display: block;
    }

    .kontactix-caption {
      text-align: center;
      font-size: 12px;
      color: var(--slate-500);
      font-style: italic;
      margin-top: -36px;
      margin-bottom: 48px;
      font-weight: 500;
    }

    .kontactix-section-heading {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--slate-900);
      margin-top: 48px;
      margin-bottom: 24px;
      border-bottom: 1px solid var(--slate-100);
      padding-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .kontactix-section-heading span.number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: var(--brand-teal);
      color: #ffffff;
      width: 28px;
      height: 28px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 800;
      font-family: 'JetBrains Mono', monospace;
    }

    .kontactix-intro {
      font-size: 17px;
      line-height: 1.8;
      color: var(--slate-800);
      margin-bottom: 32px;
    }

    .kontactix-lead-paragraph {
      margin-bottom: 24px;
    }

    .kontactix-callout {
      border-left: 4px solid var(--brand-orange);
      background-color: var(--brand-orange-light);
      border-radius: 0 16px 16px 0;
      padding: 24px 28px;
      margin: 36px 0;
    }

    .kontactix-callout-text {
      margin: 0;
      font-size: 15px;
      font-weight: 600;
      color: var(--slate-900);
      line-height: 1.6;
    }

    .kontactix-grid-highlights {
      display: grid;
      grid-template-cols: 1fr;
      gap: 24px;
      margin: 32px 0;
    }

    .kontactix-highlight-card {
      background-color: var(--slate-50);
      border: 1px solid var(--slate-100);
      border-radius: 16px;
      padding: 32px;
      transition: all 0.3s ease;
    }

    .kontactix-highlight-card:hover {
      background-color: #ffffff;
      border-color: rgba(80, 178, 178, 0.3);
      box-shadow: 0 8px 30px rgba(80, 178, 178, 0.05);
      transform: translateY(-2px);
    }

    .kontactix-highlight-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .kontactix-highlight-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background-color: rgba(80, 178, 178, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-teal-dark);
      flex-shrink: 0;
    }

    .kontactix-highlight-title {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--slate-900);
      margin: 0;
    }

    .kontactix-highlight-desc {
      font-size: 14px;
      line-height: 1.7;
      color: var(--slate-600);
      margin: 0;
    }

    .kontactix-highlight-desc p {
      margin-top: 0;
      margin-bottom: 12px;
    }

    .kontactix-highlight-desc p:last-child {
      margin-bottom: 0;
    }

    /* Stats Section */
    .kontactix-stats-grid {
      display: grid;
      grid-template-cols: repeat(3, 1fr);
      gap: 24px;
      margin: 36px 0;
    }

    @media (max-width: 640px) {
      .kontactix-stats-grid {
        grid-template-cols: 1fr;
        gap: 16px;
      }
    }

    .kontactix-stat-card {
      background: linear-gradient(145deg, #ffffff, var(--slate-50));
      border: 1px solid var(--slate-100);
      border-radius: 16px;
      padding: 28px 24px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
      position: relative;
      overflow: hidden;
    }

    .kontactix-stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background-color: var(--brand-orange);
    }

    .kontactix-stat-card:nth-child(even)::before {
      background-color: var(--brand-teal);
    }

    .kontactix-stat-number {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 38px;
      font-weight: 800;
      color: var(--slate-900);
      line-height: 1;
      margin-bottom: 8px;
    }

    .kontactix-stat-number.teal-color {
      color: var(--brand-teal-dark);
    }

    .kontactix-stat-number.orange-color {
      color: var(--brand-orange-dark);
    }

    .kontactix-stat-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--slate-500);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1.4;
    }

    .kontactix-bullet-list {
      list-style-type: none;
      padding-left: 0;
      margin: 24px 0;
    }

    .kontactix-bullet-item {
      position: relative;
      padding-left: 28px;
      margin-bottom: 16px;
      font-size: 15px;
      line-height: 1.7;
    }

    .kontactix-bullet-item::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--brand-teal);
      font-weight: 800;
      font-size: 16px;
    }

    .kontactix-conclusion-box {
      background-color: var(--brand-teal-light);
      border: 1px solid rgba(80, 178, 178, 0.12);
      border-radius: 18px;
      padding: 36px;
      margin-top: 48px;
      position: relative;
    }

    .kontactix-conclusion-text {
      font-size: 15px;
      line-height: 1.75;
      color: var(--brand-teal-dark);
      font-weight: 500;
      margin: 0;
    }

    .kontactix-conclusion-text p {
      margin-top: 0;
      margin-bottom: 16px;
    }

    .kontactix-conclusion-text p:last-child {
      margin-bottom: 0;
    }

    .kontactix-footer-logo {
      text-align: center;
      margin-top: 56px;
      padding-top: 36px;
      border-top: 1px solid var(--slate-100);
    }

    .kontactix-logo {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-weight: 800;
      font-size: 18px;
      color: var(--slate-900);
      letter-spacing: -0.02em;
    }

    .kontactix-logo span {
      color: var(--brand-orange);
    }

    /* Call to Action */
    .kontactix-cta {
      border: 1px solid var(--slate-100);
      background: linear-gradient(to bottom, var(--slate-50), #ffffff);
      text-align: center;
      border-radius: 20px;
      padding: 36px 24px;
      margin-top: 56px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .kontactix-cta-button {
      background-color: var(--brand-orange);
      color: #ffffff !important;
      padding: 12px 28px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 15px;
      display: inline-block;
      text-decoration: none;
      box-shadow: 0 4px 14px rgba(255, 120, 15, 0.2);
      transition: all 0.2s ease;
      margin-bottom: 24px;
    }

    .kontactix-cta-button:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(255, 120, 15, 0.3);
      background-color: var(--brand-orange-dark);
    }

    .kontactix-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 0;
    }

    .kontactix-link-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      font-weight: 700;
      color: var(--slate-500);
      text-decoration: none;
      transition: color 0.2s;
    }

    .kontactix-link-item:hover {
      color: var(--brand-orange);
    }

    .kontactix-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .kontactix-dot-orange {
      background-color: var(--brand-orange);
    }

    .kontactix-dot-teal {
      background-color: var(--brand-teal);
    }
  