   body {
      font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
      color: #1e293b;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background-color: #ffffff;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #181B20;
    }

    h1 { line-height: 1.1; }
    h2 { line-height: 1.2; }

    p {
      line-height: 1.6;
      color: #8F96A3;
    }

    .font-sora { font-family: "Sora", ui-sans-serif, system-ui, sans-serif; }
    .font-roboto { font-family: "Roboto", ui-sans-serif, system-ui, sans-serif; }

    .glass-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(222, 225, 230, 0.5);
    }

    .card-hover-effect {
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    }

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

    .step-line::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 14px;
      bottom: -44px;
      width: 1px;
      background-color: #dee1e6;
    }

    .step-line:last-child::before {
      display: none;
    }

    input::placeholder, textarea::placeholder {
      color: #8F96A3;
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    ::-webkit-scrollbar-thumb {
      background: #3661E2;
      border-radius: 10px;
    }
	button {
		cursor:pointer
	}
	.margin{
		margin-left:10px
	}