
    :root {
      --bs-primary: #4F46E5;
      --bs-primary-rgb: 79, 70, 229;
      --bs-secondary: #F59E0B;
      --bs-secondary-rgb: 245, 158, 11;
      --bs-tertiary: #F8FAFC;
      --bs-tertiary-rgb: 248, 250, 252;
      --primary: #4F46E5;
      --secondary: #F59E0B;
      --accent: #10B981;
      --tertiary: #F8FAFC;
    }

    * {
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: 'Rubik', sans-serif;
      color: #334155;
      overflow-x: hidden; /* Prevents horizontal scroll from SVGs */
    }

    img {
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      transition: 0.3s;
    }

    .btn-primary {
      background-color: var(--bs-primary);
      border-color: var(--bs-primary);
      border-radius: 8px;
      padding: 0.6rem 1.5rem;
      font-weight: 500;
      transition: 0.3s;
    }

    .btn-primary:hover {
      background-color: #4338CA;
      border-color: #4338CA;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    }

    /* Navbar */
    .navigation {
      background-color: var(--bs-tertiary) !important;
      box-shadow: 0 2px 10px rgba(0,0,0,0.03);
      position: sticky;
      top: 0;
      z-index: 1030;
    }

    .nav-link {
      font-weight: 500;
      color: #334155;
      padding: 0.5rem 1rem !important;
    }

    .nav-link:hover, .nav-link.active {
      color: var(--bs-primary);
    }

    /* Shapes & Sections */
    .has-shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }
    
    .has-shapes svg {
      opacity: 0.4;
    }

    .container {
      position: relative;
      z-index: 2;
    }

    .section {
      padding: 5rem 0;
    }

    .section-sm {
      padding: 3rem 0;
    }

    .section-title h1, .section-title h2 {
      font-weight: 700;
      color: #1E293B;
    }

    .page-header {
      background-color: var(--bs-tertiary) !important;
      padding: 4rem 0;
    }

    .page-header h2 {
      font-weight: 700;
      color: #1E293B;
    }

    .bg-tertiary {
      background-color: var(--bs-tertiary) !important;
    }

    /* Content Typography */
    .policy-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      padding: 3rem;
      border: 1px solid #f1f5f9;
    }

    .content p {
      line-height: 1.8;
      color: #475569;
      margin-bottom: 1.2rem;
    }

    .content h3 {
      font-weight: 600;
      color: #1E293B;
      margin-top: 2.5rem;
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }

    .content ul {
      padding-left: 20px;
      margin-bottom: 1.5rem;
    }

    .content ul li {
      color: #475569;
      margin-bottom: 0.8rem;
      padding-left: 10px;
      position: relative;
    }
    
    .content ul li::marker {
      color: var(--bs-primary);
      font-size: 1.2em;
    }

    .content a {
      color: var(--bs-primary);
      font-weight: 500;
    }

    .content a:hover {
      text-decoration: underline;
    }

    .notices {
      padding: 20px;
      border-radius: 8px;
      margin: 25px 0;
      font-size: 0.95rem;
    }

    .notices.note {
      background-color: rgba(var(--bs-primary-rgb), 0.05);
      border-left: 4px solid var(--bs-primary);
    }

    /* Footer */
    footer {
      background-color: var(--bs-tertiary) !important;
      padding-top: 4rem !important;
    }
    .footer-widget h5 {
      font-weight: 600;
      color: #1E293B;
    }
    .footer-widget ul li a {
      color: #64748B;
      font-size: 0.95rem;
    }
    .footer-widget ul li a:hover {
      color: var(--bs-primary);
      padding-left: 5px;
    }
    .social-icons a {
      color: #64748B;
      font-size: 1.2rem;
      transition: 0.3s;
    }
    .social-icons a:hover {
      color: var(--bs-primary);
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .section {
        padding: 3rem 0;
      }
      .page-header {
        padding: 2rem 0;
      }
      .policy-card {
        padding: 1.5rem;
      }
    }




        .partners-section {
            padding: 60px 0;
        }
        .form-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            padding: 40px;
            transition: all 0.3s ease;
        }
        .form-card:hover {
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        }
        .form-control, .form-select {
            border-radius: 10px;
            border: 2px solid #e8edf2;
            padding: 12px 16px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .form-control:focus, .form-select:focus {
            border-color: #4a6cf7;
            box-shadow: 0 0 0 4px rgba(74, 108, 247, 0.1);
        }
        .form-control.is-invalid, .form-select.is-invalid {
            border-color: #dc3545;
            box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
        }
        .form-control.is-valid, .form-select.is-valid {
            border-color: #198754;
            box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.1);
        }
        .btn-submit {
            background: #4a6cf7;
            color: #fff;
            border: none;
            padding: 14px 40px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .btn-submit:hover {
            background: #3a56d4;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 108, 247, 0.3);
        }
        .btn-submit:active {
            transform: translateY(0);
        }
        .success-alert {
            background: #d4edda;
            border: 2px solid #c3e6cb;
            border-radius: 12px;
            padding: 25px 30px;
            color: #155724;
            margin-bottom: 30px;
        }
        .success-alert i {
            font-size: 2.5rem;
            color: #28a745;
        }
        .required-star {
            color: #dc3545;
            margin-left: 2px;
        }
        .form-label {
            font-weight: 500;
            color: #2d3748;
            margin-bottom: 6px;
        }
        .form-text {
            font-size: 0.85rem;
            color: #718096;
        }
        .id-type-group {
            display: flex;
            gap: 20px;
            padding: 10px 0;
        }
        .id-type-group .form-check {
            margin-right: 20px;
        }
        .id-type-group .form-check-input {
            width: 18px;
            height: 18px;
            margin-top: 3px;
        }
        .id-type-group .form-check-label {
            font-weight: 400;
            margin-left: 8px;
        }
        .partner-benefits {
            background: #f8faff;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
        }
        .partner-benefits li {
            margin-bottom: 10px;
            color: #2d3748;
        }
        .partner-benefits i {
            color: #4a6cf7;
            margin-right: 10px;
            width: 20px;
        }
        /* Fix for dropdown styling */
        .form-select {
            appearance: auto;
            -webkit-appearance: auto;
            -moz-appearance: auto;
        }
        .form-select option {
            padding: 8px;
        }
        @media (max-width: 768px) {
            .form-card {
                padding: 25px 20px;
            }
            .id-type-group {
                flex-direction: column;
                gap: 10px;
            }
        }
    
  


