      :root {
        --color-primary: #0a0a23;
        --color-secondary: #009a3e;
        --color-accent-blue: #057dcd;
        --color-surface: #f5f8fb;
        --color-border: #e1e5eb;
      }
      *, *::before, *::after {
        box-sizing: border-box;
      }
      body {
        margin: 0;
        font-family: 'Inter', sans-serif;
        background: var(--color-surface);
        color: var(--color-primary);
        line-height: 1.6;
      }
      /* Header & navigation */
      header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #ffffff;
        border-bottom: 1px solid var(--color-border);
      }
      nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem;
      }
      .nav-left {
        font-weight: 700;
        font-size: 1.4rem;
      }
      .nav-links {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
      }
      .nav-links a {
        text-decoration: none;
        color: var(--color-primary);
        font-weight: 500;
        transition: color 0.2s ease;
      }
      .nav-links a:hover {
        color: var(--color-secondary);
      }
      .nav-links .cta {
        background: var(--color-secondary);
        color: white;
        padding: 0.6rem 1.2rem;
        border-radius: 0.5rem;
        font-weight: 600;
      }
      .nav-links .cta:hover {
        opacity: 0.9;
      }
      /* Hero section */
      .hero {
        background: linear-gradient(180deg, #004b83 0%, #026aa7 100%);
        color: white;
        padding: 6rem 1rem 4rem;
        text-align: center;
      }
      .hero h1 {
        margin: 0;
        font-size: 2.4rem;
        line-height: 1.3;
      }
      .hero p {
        margin-top: 1rem;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        color: #e0eaf5;
        font-size: 1.1rem;
      }
      .hero-buttons {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
      }
      .btn-primary, .btn-outline {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
      }
      .btn-primary {
        background: var(--color-secondary);
        color: white;
      }
      .btn-outline {
        border: 2px solid var(--color-secondary);
        color: var(--color-secondary);
      }
      .btn-primary:hover, .btn-outline:hover {
        opacity: 0.9;
      }
      /* Generic section styling */
      section {
        padding: 4rem 1rem;
      }
      .section-header {
        max-width: 800px;
        margin: 0 auto 2rem;
        text-align: center;
      }
      .section-header h2 {
        margin: 0;
        font-size: 2rem;
      }
      .section-header p {
        margin-top: 0.5rem;
        color: #4a4a68;
      }
      .content {
        max-width: 1200px;
        margin: 0 auto;
      }
      /* What we do & why choose */
      .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
      }
      .card {
        background: #ffffff;
        border: 1px solid var(--color-border);
        border-radius: 0.5rem;
        padding: 1.5rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      }
      .card h3 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
        color: var(--color-primary);
      }
      .card p {
        margin: 0;
        color: #5a5a7a;
        font-size: 0.95rem;
        line-height: 1.6;
      }
      /* Timeline */
      .timeline {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        position: relative;
        max-width: 800px;
        margin: 0 auto;
      }
      .timeline::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--color-secondary);
      }
      .timeline-item {
        position: relative;
        padding-left: 60px;
      }
      .timeline-item::before {
        content: "";
        position: absolute;
        left: 11px;
        top: 0.25rem;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--color-secondary);
      }
      .timeline-item h4 {
        margin: 0 0 0.25rem;
        font-size: 1.1rem;
        color: var(--color-primary);
      }
      .timeline-item p {
        margin: 0;
        color: #5a5a7a;
        font-size: 0.95rem;
        line-height: 1.5;
      }
      /* Impact numbers */
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
      }
      .stat {
        background: #ffffff;
        border: 1px solid var(--color-border);
        border-radius: 0.5rem;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      }
      .stat h3 {
        margin: 0;
        font-size: 2rem;
        color: var(--color-secondary);
      }
      .stat p {
        margin-top: 0.5rem;
        color: var(--color-primary);
        font-size: 0.95rem;
      }
      /* Team & values */
      .team-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 800px;
        margin: 0 auto;
      }
      .team-member {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
      }
      .team-member h4 {
        margin: 0;
        font-size: 1.1rem;
        color: var(--color-primary);
      }
      .team-member p {
        margin: 0.25rem 0 0;
        color: #5a5a7a;
        font-size: 0.95rem;
      }
      .values-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        max-width: 900px;
        margin: 0 auto;
      }
      .value-item {
        background: #ffffff;
        border: 1px solid var(--color-border);
        border-radius: 0.5rem;
        padding: 1.5rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        text-align: center;
      }
      .value-item h4 {
        margin: 0 0 0.5rem;
        color: var(--color-primary);
      }
      .value-item p {
        margin: 0;
        color: #5a5a7a;
        font-size: 0.95rem;
      }
      /* Quick facts */
      .facts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        max-width: 900px;
        margin: 0 auto;
      }
      .fact {
        background: #ffffff;
        border: 1px solid var(--color-border);
        border-radius: 0.5rem;
        padding: 1.5rem;
        text-align: left;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      }
      .fact h4 {
        margin: 0 0 0.25rem;
        font-size: 1rem;
        color: var(--color-secondary);
      }
      .fact p {
        margin: 0;
        color: #5a5a7a;
        font-size: 0.9rem;
      }
      /* Call to action */
      .cta-section {
        background: linear-gradient(180deg, #0b5d20 0%, #187d3a 100%);
        color: white;
        text-align: center;
        padding: 3rem 1rem;
      }
      .cta-section h2 {
        margin: 0 0 1rem;
        font-size: 2rem;
      }
      .cta-section p {
        margin: 0 0 2rem;
        font-size: 1.1rem;
      }
      .cta-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
      }