      :root {
        --primary: #1766e5;
        --primary-dark: #124fa8;
        --primary-light: #6ba0f5;
        --accent: #356b5e;
        --accent-dark: #28544a;
        --text-dark: hsl(222, 47%, 11%);
        --text-light: hsl(215, 16%, 47%);
        --bg-white: hsl(0, 0%, 100%);
        --bg-light: hsl(220, 13%, 97%);
        --border-light: hsl(220, 13%, 91%);
        --muted: hsl(220, 13%, 95%);
      }

      /* Reset & Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
        color: var(--text-dark);
        background-color: var(--bg-light);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
      }

      /* Utility Classes */
      .min-h-screen {
        min-height: 100vh;
      }

      .bg-background {
        background-color: var(--bg-light);
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
      }

      .mx-auto {
        margin-left: auto;
        margin-right: auto;
      }

      .px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
      }

      .space-y-6 > * + * {
        margin-top: 1.5rem;
      }

      .space-y-8 > * + * {
        margin-top: 2rem;
      }

      .space-y-4 > * + * {
        margin-top: 1rem;
      }

      .space-y-2 > * + * {
        margin-top: 0.5rem;
      }

      .space-y-1 > * + * {
        margin-top: 0.25rem;
      }

      .space-x-4 {
        display: flex;
        gap: 1rem;
      }

      .mb-8 {
        margin-bottom: 2rem;
      }

      .mb-6 {
        margin-bottom: 1.5rem;
      }

      .mb-4 {
        margin-bottom: 1rem;
      }

      .mr-1 {
        margin-right: 0.25rem;
      }

      /* Flexbox Utilities */
      .flex {
        display: flex;
      }

      .items-center {
        align-items: center;
      }

      .justify-center {
        justify-content: center;
      }

      /* Typography */
      .text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
      }

      .text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
      }

      .text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
      }

      .text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
      }

      .text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
      }

      .font-bold {
        font-weight: 700;
      }

      .font-semibold {
        font-weight: 600;
      }

      /* Colors */
      .text-primary {
        color: var(--primary);
      }

      .text-muted-foreground {
        color: var(--text-light);
      }

      .bg-primary {
        background-color: var(--primary);
      }

      .bg-card {
        background-color: var(--bg-white);
      }

      .bg-muted {
        background-color: var(--muted);
      }

      .bg-transparent {
        background-color: transparent;
      }

      /* Gradients */
      .bg-gradient-to-r {
        background-image: linear-gradient(to right, rgba(53, 107, 94, 0.2), rgba(53, 107, 94, 0.1));
      }

      .from-accent\/20 {
        --tw-gradient-from: rgba(53, 107, 94, 0.2);
      }

      .to-accent\/10 {
        --tw-gradient-to: rgba(53, 107, 94, 0.1);
      }

      .bg-gradient-to-r.from-accent\/20.to-accent\/10 {
        background-image: linear-gradient(to right, rgba(53, 107, 94, 0.2), rgba(53, 107, 94, 0.1));
      }

      /* Borders */
      .border {
        border-width: 1px;
      }

      .border-transparent {
        border-color: transparent;
      }

      .border-border\/60 {
        border-color: rgba(0, 0, 0, 0.1);
      }

      .rounded-md {
        border-radius: 0.375rem;
      }

      .rounded-lg {
        border-radius: 0.5rem;
      }

      .rounded-2xl {
        border-radius: 1rem;
      }

      /* Spacing */
      .p-8 {
        padding: 2rem;
      }

      .px-3 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
      }

      .py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
      }

      .pl-6 {
        padding-left: 1.5rem;
      }

      /* Sizing */
      .w-44 {
        width: 11rem;
      }

      .h-9 {
        height: 2.25rem;
      }

      .w-4 {
        width: 1rem;
      }

      .h-4 {
        height: 1rem;
      }

      .max-w-4xl {
        max-width: 56rem;
      }

      /* Display */
      .inline-block {
        display: inline-block;
      }

      /* Effects */
      .shadow-sm {
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      }

      .hover\:bg-muted:hover {
        background-color: var(--muted);
      }

      .hover\:underline:hover {
        text-decoration: underline;
      }

      /* List Styles */
      .list-disc {
        list-style-type: disc;
      }

      /* Leading */
      .leading-relaxed {
        line-height: 1.625;
      }

      /* Grid */
      .grid {
        display: grid;
      }

      .grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
      }

      .gap-x-6 {
        column-gap: 1.5rem;
      }

      .gap-y-2 {
        row-gap: 0.5rem;
      }

      /* Scroll Margin */
      .scroll-mt-20 {
        scroll-margin-top: 5rem;
      }

      /* Animations */
      @keyframes fade-in {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      .animate-fade-in {
        animation: fade-in 0.5s ease-in;
      }

      /* Links */
      a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
      }

      a.text-primary {
        color: var(--primary);
      }

      a.text-primary:hover {
        color: var(--primary-dark);
      }

      /* Buttons */
      button {
        cursor: pointer;
        font-family: inherit;
        transition: all 0.2s ease;
      }

      button:hover {
        opacity: 0.9;
      }

      /* Responsive */
      @media (min-width: 768px) {
        .md\:grid-cols-2 {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .container {
          padding: 0 2rem;
        }
      }

      /* Additional Spacing */
      .mt-4 {
        margin-top: 1rem;
      }

      /* Overflow */
      .overflow-x-auto {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      /* Table Styles */
      table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
        background-color: var(--bg-white);
      }

      .min-w-full {
        min-width: 100%;
      }

      .border-collapse {
        border-collapse: collapse;
      }

      thead {
        background-color: var(--bg-light);
      }

      thead tr {
        background-color: var(--bg-light);
      }

      tbody tr {
        border-bottom: 1px solid var(--border-light);
      }

      tbody tr:last-child {
        border-bottom: none;
      }

      tbody tr:hover {
        background-color: var(--muted);
      }

      th,
      td {
        padding: 0.5rem;
        border: 1px solid var(--border-light);
      }

      .border-border {
        border-color: var(--border-light);
      }

      th {
        font-weight: 600;
        text-align: left;
        background-color: var(--bg-light);
      }

      td {
        text-align: left;
      }

      /* Table cell padding utility */
      .p-2 {
        padding: 0.5rem;
      }

      .text-left {
        text-align: left;
      }

      .text-center {
        text-align: center;
      }

      /* Background with Opacity */
      .bg-muted\/30 {
        background-color: rgba(220, 220, 220, 0.3);
      }

      /* Print Styles */
      @media print {
        .flex.items-center.space-x-4.mb-8 {
          display: none;
        }

        table {
          page-break-inside: avoid;
        }

        thead {
          display: table-header-group;
        }

        tbody {
          display: table-row-group;
        }
      }

      /* Responsive Table */
      @media (max-width: 768px) {
        .overflow-x-auto {
          -webkit-overflow-scrolling: touch;
        }

        table {
          font-size: 0.875rem;
        }

        th,
        td {
          padding: 0.5rem 0.25rem;
        }
      }
/* thank you css */
        .thank-you-section {
            min-height: 80vh;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
            padding: 6rem 0;
        }
        .success-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #356b5e 0%, #28544a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            box-shadow: 0 20px 60px rgba(53, 107, 94, 0.3);
            animation: scaleIn 0.6s ease-out;
        }
        @keyframes scaleIn {
            0% { transform: scale(0); opacity: 0; }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); opacity: 1; }
        }
        .success-icon i {
            font-size: 4rem;
            color: white;
        }
        .thank-you-title {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #356b5e 0%, #1766e5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        .thank-you-card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(53, 107, 94, 0.1);
        }
        .step-card {
            border: 2px solid rgba(53, 107, 94, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
            height: 100%;
        }
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(53, 107, 94, 0.15);
            border-color: #356b5e;
        }
        .step-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .btn-thank-you-primary {
            background: linear-gradient(135deg, #356b5e 0%, #28544a 100%);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-thank-you-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(53, 107, 94, 0.4);
            color: white;
        }
        .btn-thank-you-secondary {
            background: white;
            color: #356b5e;
            border: 2px solid #356b5e;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-thank-you-secondary:hover {
            background: #356b5e;
            color: white;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .thank-you-title {
                font-size: 2.25rem;
            }
            .success-icon {
                width: 100px;
                height: 100px;
            }
            .success-icon i {
                font-size: 3rem;
            }
        }

/* fail page */
.fail-section {
            min-height: 80vh;
            background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #fff5f5 100%);
            padding: 6rem 0;
        }
        .error-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            box-shadow: 0 20px 60px rgba(220, 53, 69, 0.3);
            animation: scaleIn 0.6s ease-out;
        }
        @keyframes scaleIn {
            0% { transform: scale(0); opacity: 0; }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); opacity: 1; }
        }
        .error-icon i {
            font-size: 4rem;
            color: white;
        }
        .fail-title {
            font-size: 3rem;
            font-weight: 800;
            color: #dc3545;
            margin-bottom: 1rem;
        }
        .fail-card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(220, 53, 69, 0.1);
            background: white;
        }
        .help-card {
            border: 2px solid rgba(220, 53, 69, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
            height: 100%;
            background: white;
        }
        .help-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(220, 53, 69, 0.15);
            border-color: #dc3545;
        }
        .help-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .btn-fail-primary {
            background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-fail-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
            color: white;
        }
        .btn-fail-secondary {
            background: white;
            color: #dc3545;
            border: 2px solid #dc3545;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-fail-secondary:hover {
            background: #dc3545;
            color: white;
            transform: translateY(-2px);
        }
        .alert-custom {
            border-radius: 16px;
            border-left: 4px solid #dc3545;
        }
        @media (max-width: 768px) {
            .fail-title {
                font-size: 2.25rem;
            }
            .error-icon {
                width: 100px;
                height: 100px;
            }
            .error-icon i {
                font-size: 3rem;
            }
        }

        .navbar a,
        .footer a {
            text-decoration: none !important;
        }

        /* Remove the ::after underline effect from navigation links */
        .nav-menu a:not(.btn-primary)::after {
            display: none !important;
        }

        /* Ensure footer links don't have underlines */
        .footer-col ul li a {
            text-decoration: none !important;
        }
