
    :root {
      --navy: #1E293B;
      --slate: #334155;
      --muted: #64748B;
      --white: #F8FAFC;
      --accent: #2563EB;
      --light: #E5E7EB;
    }

    * { box-sizing: border-box; }
	
	html {
    scroll-behavior: smooth;
	}

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Inter, Helvetica, Arial, sans-serif;
      background: var(--white);
      color: var(--slate);
      line-height: 1.6;
    }

    h1, h2, h3 { color: var(--navy); margin-top: 0; }

    a { text-decoration: none; color: inherit; }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* HEADER */
    header {
      background: var(--navy);
      padding: 0.1rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
	  position: sticky;
	  z-index: 1000;
	  top: 0;
	  
    }


	.floating-quote:hover {
		transform: translateY(-3px);
		box-shadow: 0 12px 30px rgba(0,0,0,0.2);
	}

		.header-quote {
			float: right;
			top-margin: 0px;
			display: inline-block;
	}

		.brand-container {
		display: inline-block;
		margin: auto;
	}

    .brand {
      line-height: 1.1;
    }

    .brand-name {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--white);
      text-transform: lowercase;
      letter-spacing: 0.5px;
    }

    .brand-tag {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      color: #CBD5E1;
    }

    /* HERO */
    .hero {
      padding: 72px 0 56px;
      text-align: center;
    }

    .hero h1 {
      font-size: 2.2rem;
      margin-bottom: 16px;
    }

    .hero p {
      max-width: 700px;
      margin: 0 auto 28px;
      color: var(--muted);
    }

    .btn {
      background: var(--accent);
      color: #fff;
      padding: 14px 26px;
      border-radius: 8px;
      font-weight: 600;
      display: inline-block;
      transition: background 0.2s ease;
    }

    .btn:hover { background: #1d4ed8; }

    /* TRUST */
    .trust {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin-top: 48px;
    }

    .trust-item {
      background: #fff;
      padding: 18px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.05);
      font-weight: 600;
    }

    /* SECTIONS */
    section { padding: 64px 0; }

    /* SERVICES */
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
    }

    .card {
      background: #fff;
      padding: 22px;
      border-radius: 14px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    /* HOW IT WORKS */
    .how-it-works, #pricing, #services, #quote, .services { text-align: center; }

    .steps-timeline {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .step {
      max-width: 160px;
    }

    .circle {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #F1F5F9;
      border: 2px solid #CBD5E1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      margin: 0 auto 10px;
      color: var(--navy);
    }

    .arrow {
      font-size: 1.4rem;
      color: #CBD5E1;
      margin-top: -22px;
    }

    /* PRICING */
    .pricing-note {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    /* FORM */
    form {
      max-width: 720px;
      margin: 0 auto;
      background: #fff;
      padding: 28px;
      border-radius: 16px;
      box-shadow: 0 14px 36px rgba(0,0,0,0.08);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 14px;
    }

    label { font-weight: 600; font-size: 0.9rem; }

    input, select, textarea {
      width: 100%;
      padding: 10px 12px;
      border-radius: 8px;
      border: 1px solid var(--light);
      margin-top: 4px;
      font-family: inherit;
    }

    textarea { min-height: 90px; }

    /* FOOTER */
    footer {
      background: #0F172A;
      color: #CBD5E1;
      padding: 28px 0;
      font-size: 0.9rem;
      text-align: center;
    }

    @media (max-width: 768px) {
      .steps-timeline { flex-direction: column; }
      .arrow { display: none; }
      .hero h1 { font-size: 1.8rem; }
    }
	
		/* Floating Quote Button */
	.floating-quote {
		bottom: 25px;
		right: 25px;
		z-index: 999;
		display: none;
		padding: 14px 22px;
		background-color: #0b3d91;
		color: #fff;
		font-weight: 600;
		border-radius: 50px;
		box-shadow: 0 8px 25px rgba(0,0,0,0.15);
		transition: all 0.3s ease;
		position: inline-block;
		margin: auto;
	}
	
	.faq {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
	}

	.faq h2 {
		text-align: center;
		margin-bottom: 30px;
	}

	.faq-item {
		border-bottom: 1px solid #ddd;
	}

	.faq-question {
		width: 100%;
		padding: 18px;
		text-align: left;
		font-size: 18px;
		font-weight: 600;
		background: none;
		border: none;
		cursor: pointer;
		position: relative;
	}

	.faq-question::after {
		content: "+";
		position: absolute;
		right: 20px;
		font-size: 20px;
		transition: transform 0.3s ease;
	}

	.faq-question.active::after {
		content: "-";
	}

	.faq-answer {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.faq-answer p {
		padding: 0 18px 18px;
	}
	
	button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid #2563EB;
    border-color: #2563EB;
	}
	
	
	
	table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th {
  background: #F1F5F9;
  text-align: center;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #E5E7EB;
}
	
	
	
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
  margin-right: 30px;
  color: #CBD5E1;
}

.desktop-cta {
  display: inline-block;
}

.header-actions {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {

  .nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--navy);
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    display: none;
    width: 220px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
	color: #CBD5E1;
  }

  .nav.active {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-cta {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
}

.mobile-cta {
  background: #2563EB;
  border-radius: 20px;
}



	.text-link:link, #text-link:visited {
  color: #007bff; /* Blue text color */
  text-decoration: none; /* Remove default underline */
  font-weight: bold; /* Make text bold */
	}

	/* On mouse-over (hover) */
	.text-link:hover {
	  color: #0056b3; /* Darker blue on hover */
	  text-decoration: underline; /* Add underline on hover */
	}

	/* On mouse-click (active) */
	.text-link:active {
	  color: #ff0000; /* Red when clicked */
	}
