    :root {
      --primary: #10b981;
      --primary-dark: #047857;
      --secondary: #0077aa;
      --accent: #fbbf24;
      --text-dark: #1f2937;
      --text-light: #6b7280;
      --bg-light: #f9fafb;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

body.kisima-project-page {
      font-family: var(--kisima-font, 'Inter', sans-serif);
      background: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
    }

    /* ============ HERO SECTION ============ */
    .hero-section {
      position: relative;
      height: 500px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    }

    .hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: white;
      padding: 60px 40px;
      text-align: left;
    }

    .hero-tag {
      display: inline-block;
      background: rgba(251, 191, 36, 0.9);
      color: var(--text-dark);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      opacity: 0.95;
      margin-bottom: 30px;
      max-width: 600px;
      font-weight: 300;
    }

    .breadcrumb-nav {
      background: white;
      padding: 15px 40px;
      border-bottom: 1px solid #e5e7eb;
      font-size: 0.9rem;
    }

    .breadcrumb-nav a {
      color: var(--secondary);
      text-decoration: none;
      margin-right: 8px;
    }

    .breadcrumb-nav a:hover {
      text-decoration: underline;
    }

    /* ============ METRICS SECTION ============ */
    .metrics-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      padding: 60px 40px;
      background: white;
      border-bottom: 1px solid #e5e7eb;
    }

    .metric-card {
      text-align: center;
      border-left: 4px solid var(--primary);
      padding-left: 20px;
    }

    .metric-value {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .metric-label {
      font-size: 0.95rem;
      color: var(--text-light);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ============ MAIN CONTENT ============ */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 40px;
    }

    .section-header {
      margin-bottom: 40px;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .section-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-light);
    }

    /* ============ CHALLENGE-SOLUTION BLOCKS ============ */
    .challenge-solution {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 80px;
      align-items: center;
    }

    .challenge-solution.reversed {
      grid-template-columns: 1fr 1fr;
      direction: rtl;
    }

    .challenge-solution.reversed > * {
      direction: ltr;
    }

    .cs-image {
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .cs-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .cs-content h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--text-dark);
    }

    .cs-content.challenge h3 {
      color: #dc2626;
    }

    .cs-content.solution h3 {
      color: var(--primary);
    }

    .cs-content p {
      font-size: 1rem;
      color: var(--text-light);
      margin-bottom: 15px;
      line-height: 1.8;
    }

    .section-block {
      background: white;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
      margin-bottom: 60px;
    }

    .section-block .cs-content {
      padding: 0;
    }

    .section-block .cs-content p {
      margin-bottom: 20px;
    }

    .cs-list {
      list-style: none;
    }

    .cs-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      font-size: 1rem;
      color: var(--text-light);
    }

    .cs-list li:before {
      content: "✓";
      color: var(--primary);
      font-weight: bold;
      margin-right: 15px;
      font-size: 1.2rem;
      margin-top: -2px;
    }

    /* ============ PROCESS TIMELINE ============ */
    .process-timeline {
      margin-bottom: 80px;
    }

    .timeline {
      position: relative;
      padding: 40px 0;
    }

    .timeline:before {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 100%;
      background: linear-gradient(180deg, var(--primary), transparent);
      top: 0;
    }

    .timeline-item {
      margin-bottom: 50px;
      position: relative;
    }

    .timeline-item:nth-child(odd) .timeline-content {
      margin-left: 0;
      margin-right: auto;
      padding-right: 50%;
    }

    .timeline-item:nth-child(even) .timeline-content {
      margin-left: auto;
      margin-right: 0;
      padding-left: 50%;
    }

    .timeline-marker {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 40px;
      background: white;
      border: 3px solid var(--primary);
      border-radius: 50%;
      top: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--primary);
      font-size: 18px;
    }

    .timeline-content {
      background: white;
      padding: 25px 30px;
      border-radius: 12px;
      border-left: 4px solid var(--primary);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .timeline-content h4 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-dark);
    }

    .timeline-content p {
      color: var(--text-light);
      font-size: 0.95rem;
      margin: 0;
    }

    /* ============ GALLERY ============ */
    .gallery-section {
      margin-bottom: 80px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      aspect-ratio: 1;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay i {
      color: white;
      font-size: 2rem;
    }

    /* ============ IMPACT SECTION ============ */
    .impact-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      padding: 60px 40px;
      border-radius: 20px;
      margin-bottom: 80px;
    }

    .impact-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 40px;
    }

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
    }

    .impact-item {
      background: rgba(255, 255, 255, 0.1);
      padding: 30px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      text-align: center;
      backdrop-filter: blur(10px);
    }

    .impact-number {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .impact-text {
      font-size: 0.95rem;
      opacity: 0.95;
    }

    /* ============ QUOTE SECTION ============ */
    .quote-section {
      background: white;
      border-left: 5px solid var(--accent);
      padding: 40px;
      border-radius: 12px;
      margin-bottom: 80px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .quote-text {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 20px;
      font-style: italic;
    }

    .quote-author {
      font-size: 1rem;
      color: var(--text-light);
      font-weight: 600;
    }

    /* ============ CTA SECTION ============ */
    .cta-section {
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      color: white;
      padding: 60px 40px;
      border-radius: 20px;
      text-align: center;
      margin-bottom: 60px;
    }

    .cta-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .cta-text {
      font-size: 1.1rem;
      margin-bottom: 30px;
      opacity: 0.95;
    }

    .cta-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary-cta {
      background: var(--accent);
      color: var(--text-dark);
      padding: 14px 32px;
      border-radius: 50px;
      border: none;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .btn-primary-cta:hover {
      background: #f59e0b;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-secondary-cta {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 14px 32px;
      border-radius: 50px;
      border: 2px solid white;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .btn-secondary-cta:hover {
      background: white;
      color: var(--primary);
      transform: translateY(-2px);
    }

    /* ============ RELATED PROJECTS ============ */
    .related-section {
      margin-top: 100px;
      padding-top: 60px;
      border-top: 2px solid #e5e7eb;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    a.related-card {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .related-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .related-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .related-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .related-content {
      padding: 25px;
    }

    .related-tag {
      display: inline-block;
      background: #e8f5e9;
      color: var(--primary);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .related-title {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-dark);
    }

    .related-desc {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-bottom: 15px;
    }

    .related-link {
      color: var(--primary);
      font-weight: 700;
      text-decoration: none;
    }

    .related-link:hover {
      text-decoration: underline;
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 768px) {
body.kisima-project-page {
        padding-top: 120px;
      }

      .hero-section {
        height: 320px;
      }

      .hero-content {
        padding: 35px 20px;
      }

      .hero-title {
        font-size: 2rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      main {
        padding: 30px 18px;
      }

      .metrics-section {
        padding: 30px 18px;
        gap: 18px;
      }

      .challenge-solution,
      .challenge-solution.reversed {
        grid-template-columns: 1fr;
        gap: 24px;
        direction: ltr !important;
      }

      .challenge-solution > * {
        direction: ltr !important;
      }

      .challenge-solution.reversed > * {
        direction: ltr !important;
      }

      .section-title {
        font-size: 1.8rem;
      }

      .section-header {
        margin-bottom: 30px;
      }

      .section-block {
        padding: 30px;
        margin-bottom: 40px;
      }

      .timeline:before {
        left: 20px;
      }

      .timeline-item:nth-child(odd) .timeline-content,
      .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        padding-left: 70px;
        padding-right: 0;
      }

      .timeline-marker {
        left: 20px;
      }

      .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
      }

      .cta-section {
        padding: 30px 18px;
      }

      .cta-title {
        font-size: 1.5rem;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .btn-primary-cta,
      .btn-secondary-cta {
        width: 100%;
      }

      .breadcrumb-nav {
        padding: 10px 16px;
        font-size: 0.85rem;
      }

      .impact-section {
        padding: 30px 18px;
      }

      .quote-section {
        padding: 25px 16px;
      }

      .quote-text {
        font-size: 1.05rem;
      }

      .related-section {
        margin-top: 60px;
        padding-top: 30px;
      }
    }

    @media (max-width: 480px) {
body.kisima-project-page {
        padding-top: 140px;
      }

      .hero-section {
        height: 240px;
      }

      .hero-title {
        font-size: 1.5rem;
      }

      .hero-content {
        padding: 24px 14px;
      }

      .metric-value {
        font-size: 1.9rem;
      }

      .section-title {
        font-size: 1.4rem;
      }

      main {
        padding: 22px 14px;
      }

      .metrics-section {
        padding: 22px 14px;
      }

      .section-block {
        padding: 24px;
        margin-bottom: 30px;
      }

      .section-header {
        margin-bottom: 24px;
      }

      .cta-section {
        padding: 24px 14px;
      }

      .impact-section {
        padding: 24px 14px;
      }

      .quote-section {
        padding: 20px 14px;
      }

      .breadcrumb-nav {
        padding: 8px 14px;
        font-size: 0.75rem;
      }

      .cs-content h3 {
        font-size: 1.25rem;
      }
    }
