    :root {
        --primary: #004c97;
        --primary-light: #e6f0fb;
        --accent: #f0a500;
        --border: #d0d7e2;
        --bg: #f5f7fb;
        --text: #222;
        --muted: #666;
        --error: #c0392b;
        --radius: 8px;
    }

    span {
        box-sizing: border-box;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    body {
        margin: 0;
        padding: 0;
        background: var(--bg);
        color: var(--text);
    }

    .page {
        max-width: 960px;
        margin: 20px auto 40px;
        padding: 20px;
    }

    .card {
        background: #fff;
        border-radius: var(--radius);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        padding: 24px 24px 32px;
    }

    header {
        text-align: center;
        margin-bottom: 24px;
    }

    header h1 {
        font-size: 1.6rem;
        margin: 0;
        color: var(--primary);
    }

    header h2 {
        font-size: 1.2rem;
        margin: 4px 0 0;
        font-weight: 500;
        color: var(--muted);
    }

    header p {
        margin: 8px 0 0;
        font-size: 0.9rem;
        color: var(--muted);
    }

    .info-banner {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        background: var(--primary-light);
        border-radius: var(--radius);
        padding: 12px 16px;
        margin-bottom: 20px;
        border-left: 4px solid var(--primary);
        font-size: 0.9rem;
    }

    .info-item {
        flex: 1;
        min-width: 180px;
    }

    .info-label {
        font-weight: 600;
        color: var(--primary);
        display: block;
    }

    /* Duplicate steps block removed */

    form {
        margin-top: 8px;
    }

    fieldset {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px 16px 4px;
        margin-bottom: 18px;
    }

    legend {
        padding: 0 8px;
        font-weight: 600;
        color: var(--primary);
        font-size: 0.95rem;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px 18px;
        margin-bottom: 8px;
    }

    .required {
        color: var(--error);
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 0.9rem;
    }

    :root {
        --primary: #004c97;
        --primary-light: #e6f0fb;
        --accent: #f0a500;
        --border: #d0d7e2;
        --bg: #f5f7fb;
        --text: #222;
        --muted: #666;
        --error: #c0392b;
        --radius: 8px;
    }

    body {
        margin: 0;
        padding: 0;
        background: var(--bg);
        font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
        color: var(--text);
    }

    .page {
        max-width: 960px;
        margin: 20px auto;
        padding: 20px;
    }

    .card {
        background: #fff;
        padding: 24px;
        border-radius: var(--radius);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    header {
        text-align: center;
        margin-bottom: 20px;
    }

    header h1 {
        margin: 0;
        font-size: 1.6rem;
        color: var(--primary);
    }

    header h2 {
        font-size: 1.1rem;
        color: var(--muted);
        margin-top: 6px;
    }

    /* Animated Important Banner */
    .enhanced-banner {
        display: flex;
        gap: 16px;
        padding: 16px;
        border-left: 5px solid #f39c12;
        border-radius: 10px;
        background: #fff7ed;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(-10px);
        animation: fadeInSlide .6s ease forwards;
    }

    @keyframes fadeInSlide {
        to {
            opacity: 1;
            transform: none;
        }
    }

    .banner-icon {
        font-size: 2rem;
    }

    .banner-title {
        font-weight: 700;
        color: #b45309;
        margin-bottom: 8px;
    }

    .banner-points {
        list-style: disc;
        padding-left: 16px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    /* Progress Bar */
    .progress-container {
        width: 100%;
        height: 10px;
        background: #e3e9f4;
        border-radius: 50px;
        margin: 20px 0;
        overflow: hidden;
    }

    .progress-bar {
        width: 0%;
        height: 10px;
        background: var(--primary);
        transition: width .4s ease;
    }

    /* Step Indicators */
    .steps {
        display: flex;
        flex-wrap: nowrap;
        /* Force single line */
        list-style: none;
        padding: 0;
        gap: 8px;
        /* Reduced gap */
        margin-bottom: 25px;
        justify-content: center;
        overflow-x: auto;
        /* Scroll on small screens */
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .steps::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .steps li {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        min-width: 100px;
        /* Reduced min-width */
        padding: 8px 4px;
        /* Reduced padding */
        border-radius: 12px;
        background: #fff;
        border: 1px solid var(--border);
        font-size: 0.8rem;
        /* Slightly smaller text */
        text-align: center;
        color: var(--muted);
        transition: all 0.2s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
        white-space: normal;
        /* Allow text inside to wrap if needed, but not the item itself */
        line-height: 1.2;
    }

    /* The "Step X" part */
    .steps li span {
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.8;
        margin-bottom: 2px;
        font-weight: 700;
    }

    .steps li.active {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 76, 151, 0.2);
        min-width: 110px;
        /* Active can be slightly larger */
    }

    .steps li.completed {
        background: #0f7d37;
        /* Green for done */
        color: #fff;
        border-color: #0f7d37;
    }

    /* FORM STEPS */
    .form-step {
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: all .35s ease;
    }

    .form-step.active {
        display: block;
        opacity: 1;
        transform: none;
    }

    fieldset {
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        margin-bottom: 20px;
    }

    legend {
        color: var(--primary);
        font-weight: 600;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }

    /* input,
    select,
    textarea {
      width: 100%;
      padding: 8px;
      border: 1px solid var(--border);
      border-radius: 6px;
      font-size: .9rem;
    } */

    .invalid-field {
        border-color: var(--error) !important;
        box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.25);
    }

    .error-text {
        color: var(--error);
        font-size: .78rem;
        margin-top: 2px;
    }

    /* Navigation Buttons */
    .step-nav {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }

    .step-btn {
        padding: 10px 16px;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }

    .step-btn.disabled {
        opacity: .4;
        cursor: not-allowed;
    }

    .btn-bar {
        margin-top: 20px;
        text-align: right;
    }

    .btn-primary {
        background: var(--primary);
        color: #fff;
        padding: 12px 20px;
        border-radius: 6px;
        cursor: pointer;
        border: none;
    }

    .btn-primary:hover {
        background: #003766;
    }

    input,
    select,
    textarea {
        padding: 8px 10px;
        border-radius: 4px;
        border: 1px solid var(--border);
        font-size: 0.9rem;
        transition: 0.15s ease;
    }

    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(0, 76, 151, 0.12);
        outline: none;
    }

    textarea {
        min-height: 80px;
        resize: vertical;
    }

    .hint {
        font-size: 0.78rem;
        color: var(--muted);
    }

    .inline {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .checkbox-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .btn-bar {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 18px;
    }

    .btn {
        padding: 10px 18px;
        border-radius: 999px;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background: var(--primary);
        color: #fff;
    }

    .btn-outline {
        background: #fff;
        color: var(--primary);
        border: 1px solid var(--primary);
    }

    /* Enhanced Notification Banner */
    .enhanced-banner {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        background: #fff7ed;
        border-left: 5px solid #f39c12;
        padding: 16px 18px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .banner-icon {
        font-size: 2rem;
        line-height: 1;
        color: #c56a00;
        flex-shrink: 0;
    }

    .banner-content {
        flex: 1;
        font-size: 0.95rem;
        color: #5a4a42;
    }

    .banner-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #b45309;
        margin-bottom: 8px;
    }

    .banner-points {
        list-style: disc;
        margin: 0;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .banner-points li {
        line-height: 1.5;
    }

    .banner-footer {
        margin-top: 12px;
        font-weight: 600;
        color: #6a4400;
    }

    .banner-footer a {
        color: var(--primary);
        text-decoration: none;
    }

    .banner-footer a:hover {
        text-decoration: underline;
    }

    /* Mobile responsiveness */
    @media (max-width: 640px) {
        .enhanced-banner {
            flex-direction: column;
            padding: 14px;
        }

        .banner-icon {
            font-size: 1.8rem;
        }

        .banner-footer {
            margin-top: 10px;
        }
    }

    .form-header {
        margin-bottom: 25px;
    }

    .header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .header-logo img {
        height: 60px;
        width: auto;
    }

    .header-title {
        flex: 1;
        text-align: center;
    }

    .header-title h1 {
        font-size: 1.6rem;
        margin: 0;
        color: var(--primary);
    }

    .header-title h2 {
        font-size: 1.05rem;
        margin: 4px 0 0;
        font-weight: 600;
        color: var(--muted);
    }

    .header-title p {
        margin: 6px 0 0;
        font-size: 0.9rem;
        color: var(--muted);
    }

    /* Mobile responsive */
    @media (max-width: 640px) {
        .header-row {
            flex-direction: column;
            text-align: center;
        }

        .header-logo img {
            height: 50px;
            margin-bottom: 8px;
        }
    }

    /* Action Buttons in Success Page */
    .action-buttons .btn-dashboard {
        text-decoration: none;
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 500;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .action-buttons .btn-dashboard:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }