
    :root {
      --primary: #1f3bb3;
      --primary-light: #e8efff;
      --text-dark: #111;
      --text-muted: #6b7280;
      --bg-light: #f6f9ff;
      --border: #e5e7eb;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    body {
      color: var(--text-dark);
      line-height: 1.6;
      background: #fff;
    }

	a {
	  text-decoration: none;
	  color: inherit;
	}

	a:focus-visible {
	  outline: 3px solid var(--primary);
	  outline-offset: 3px;
	}


    /* ===== Header ===== */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 64px;
      border-bottom: 1px solid var(--border);
    }

    .site-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
	
    /* Logo */
    .logo img {
      height: clamp(80px, 10vw, 150px);
      width: auto;
      display: block;
    }

    /* Nav */
    nav {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
    }

    nav a {
      margin: 0 8px;
      font-weight: 500;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      padding: 12px 24px;
      border-radius: 24px;
      font-weight: 600;
      display: inline-block;
    }

    .btn-secondary {
      background: var(--primary-light);
      color: var(--primary);
      padding: 12px 24px;
      border-radius: 10px;
      font-weight: 600;
      display: inline-block;
    }
	
	html {
	scroll-behavior: smooth;
	}


    /* ===== Home ===== */
    .home {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 64px;
      padding: 80px 64px;
      align-items: center;
    }

    .home h2 {
      font-size: 40px;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .home h2 span {
      font-weight: 800;
    }

    .home p {
      color: var(--text-muted);
      font-size: 18px;
      margin-bottom: 24px;
    }

    .home .subheading {
      font-size: 20px;
      margin-bottom: 40px;
    }

    .home-actions a {
      margin-right: 16px;
    }
	
	.home-actions a:last-child {
  margin-right: 0;
	}

    .home img {
      width: 100%;
      border-radius: 24px;
      object-fit: cover;
    }
	
	.feature-image {
      width: 100%;
      border-radius: 24px;
    }
			
	/* ===== About ===== */

		.about {
	  background: #f7faff;
	  padding: 96px 24px;
	}

	.about-inner {
	  max-width: 900px;
	  margin: 0 auto;
	  text-align: center;
	}

	.about h2 {
	  font-size: 30px;
	  line-height: 1.25;
	  font-weight: 700;
	  margin-bottom: 24px;
	}

	.about h2 strong {
	  font-weight: 800;
	}

	.about-description {
	  font-size: 16px;
	  color: #6b7280;
	  max-width: 700px;
	  margin: 0 auto 72px;
	}

	.about-pillars {
	  display: grid;
	  grid-template-columns: repeat(4, 1fr);
	  gap: 56px;
	}


	.pillar {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 18px;
	}

	.pillar-icon {
	  width: 88px;
	  height: 88px;
	  border-radius: 50%;
	  background: #e8efff;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}

	.pillar-icon svg {
	  width: 36px;
	  height: 36px;
	  stroke: #1f3bb3;
	}

	.pillar h4 {
	  font-size: 18px;
	  font-weight: 600;
	}

	/* Responsive */
	@media (max-width: 768px) {
	  .about-pillars {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	  }

	  .about h2 {
		font-size: 32px;
	  }
	}

	@media (max-width: 480px) {
	  .about-pillars {
		grid-template-columns: 1fr;
	  }
	}
	
    /* ===== Services ===== */
	
		 .services h2 {
	  font-size: 30px;
	  line-height: 1.25;
	  font-weight: 700;
	  margin-bottom: 24px;
	}
	.services h2 strong {
	  font-weight: 900;
	}
	 
	 .service-card h3 {
      margin-bottom: 12px;
      font-size: 20px;
    }
    .services {
      padding: 80px 64px;
      display: grid;
      gap: 32px;
	  text-align: center;
    }

	.services-grid {
	  display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  gap: 32px;
	}

	.service-card {
	  border: 1px solid var(--border);
	  border-radius: 24px;
	  padding: 32px;
	  background: #fff;
	  text-align: center;
	  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	}

	.service-card:hover {
	  transform: translateY(-8px);
	  box-shadow: 0 16px 32px rgba(31, 59, 179, 0.12); 
	  border-color: var(--primary-light); 
	}

	.service-card:hover .service-icon {
	  color: var(--primary);
	}


    .service-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 16px;
      color: var(--primary);
	  stroke-width: 1.75;
	  stroke-linecap: round;
	  stroke-linejoin: round; 
    }

    .service-card h3 {
      margin-bottom: 12px;
      font-size: 20px;
    }

    .service-card p {
      color: var(--text-muted);
    }
	
	.services-button{
	  text-align: center;
	}

    /* ===== Value Props ===== */
    .value-prop {
      background: var(--bg-light);
      padding: 64px;

    }

    .value-prop-grid {
      grid-template-columns: repeat(3, 1fr);
      display: grid;
      align-items: center;
      gap: 15px;
	  justify-content: center;
    }
	
	.value-prop-item {
	text-align: center;
	}

    .value-prop-icon {
      width: 40px;
      height: 40px;
      color: var(--primary);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  margin: 0 auto;
    }

    .value-prop h2 {
      font-size: 30px;
      font-weight: 700;
	  text-align: center;
	  padding: 40px 30px;
    }
	
	.value-prop h3 {
      font-size: 20px;
      font-weight: 600;
	  text-align: center;
	  padding: 40px 30px;
    }
	
	/* ===== Engagement Models ===== */

	.engagement-models {
	  background: transparent;
	  padding: 96px 24px;
	}

	.engagement-inner {
	  max-width: 1100px;
	  margin: 0 auto;
	}

	.engagement-header {
	  text-align: center;
	  max-width: 760px;
	  margin: 0 auto 64px;
	  display: block;
	}

	.engagement-header h2 {
	  font-size: 30px;
	  font-weight: 700;
	  margin-bottom: 16px;
	  display: block;
	}

	.engagement-header h2 strong {
	  font-weight: 900;
	}

	.engagement-subtitle {
	  font-size: 17px;
	  color: #4b5563;
	  line-height: 1.7;
	}

	.engagement-cards {
	  display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  gap: 32px;
	}

	.engagement-card {
	  background: #ffffff;
	  border-radius: 28px;
	  padding: 36px;
	  border: 1px solid #e5e7eb;
	  display: flex;
	  flex-direction: column;
	  transition: transform 0.25s ease, box-shadow 0.25s ease;
	  border-color: #1f3bb3;
	  box-shadow: 0 12px 28px rgba(31, 59, 179, 0.15);
	  }

	.engagement-card:hover {
	  transform: translateY(-6px);
	  box-shadow: 0 16px 32px rgba(31, 59, 179, 0.12);
	}

	.engagement-label {
	  font-size: 12px;
	  font-weight: 600;
	  text-transform: uppercase;
	  letter-spacing: 0.08em;
	  color: #1f3bb3;
	  margin-bottom: 12px;
	}

	.engagement-card h3 {
	  font-size: 22px;
	  margin-bottom: 12px;
	}

	.engagement-summary {
	  font-size: 16px;
	  font-weight: 500;
	  margin-bottom: 12px;
	  color: #111;
	}

	.engagement-card p {
	  font-size: 15px;
	  color: #6b7280;
	  line-height: 1.6;
	}

	.engagement-footnote {
	  max-width: 760px;
	  margin: 48px auto 0;
	  text-align: center;
	  font-size: 15px;
	  color: #6b7280;
	}

	@media (max-width: 900px) {
	  .engagement-cards {
		grid-template-columns: 1fr;
	  }

	  .engagement-card {
		text-align: center;
	  }
	}


    /* ===== CTA ===== */
    .cta {
      padding: 80px 64px;
      text-align: center;
    }

    .cta h2 {
      font-size: 30px;
      margin-bottom: 32px;
	  font-weight: 700;
	  
    }

    .cta a {
      margin: 0 8px;
    }

    /* ===== Footer ===== */
    footer {
      text-align: center;
      padding: 40px 16px;
      border-top: 1px solid var(--border);
      color: var(--text-muted);
      font-size: 14px;
    }

    footer a {
      margin: 0 8px;
    }


    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      header {
        padding: 24px;
      }

      .home {
        grid-template-columns: 1fr;
        padding: 64px 24px;
      }

      .services,
      .value-prop {
        padding: 64px 24px;
      }

      .cta {
        padding: 64px 24px;
      }
    }

    @media (max-width: 768px) {
      .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .logo img {
        height: 150px;
      }

      nav {
        width: 100%;
        gap: 8px;
      }

      nav a {
        margin: 0;
      }
    }
	


	/* =========================================
   Legal Pages (Professional Document Style)
========================================= */

.legals {
  background: #ffffff;
  padding: 96px 24px;
}

.legals-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

/* Main Title */
.legals h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.3;
}

/* Section Headings */
.legals h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

/* Paragraphs */
.legals p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: #374151; /* slightly darker than muted */
}

/* Lists */
.legals ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legals li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #374151;
}

/* Optional subtle divider under title */
.legals h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--primary);
  margin-top: 16px;
}
