  /* Start custom CSS for html, class: .elementor-element-8aac6fb */:root {
            --primary-blue: #005782;
            --text-dark: #222222;
            --bg-light-blue: #eef4fa;
            
            /* WCAG AA Compliant Contrast Colors adjusted from image */
            --group1-bg: #FCF3CC;
            --group1-text: #393939;
            --group2-bg: #FCF3CC;
            --group2-text: #393939;
            --group3-bg: #FCF3CC;
            --group3-text: #393939;
        }


        .table-container {
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid #ccc;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        th {
            background-color: var(--primary-blue);
            color: white;
            padding: 18px;
            font-size: 1.6rem;
            text-align: center;
        }

        td {
            padding: 20px;
            vertical-align: middle;
            border-bottom: 1px solid #ddd;
        }

        /* Left Limits Column */
        .limit-cell {
            width: 30%;
            background-color: var(--bg-light-blue)!important;
            font-weight: bold;
            font-size: 1.1rem;
            color: var(--primary-blue);
            text-align: center;
            border-right: 1px solid #ddd;
        }

        /* Right Groups Column */
        .group-cell {
            width: 70%;
        }

        .group-cell.g1 { background-color: var(--group1-bg); color: var(--group1-text); }
        .group-cell.g2 { background-color: var(--group2-bg); color: var(--group2-text); }
        .group-cell.g3 { background-color: var(--group3-bg); color: var(--group3-text); }

        .group-header {
            font-size: 1.4rem;
            font-weight: bold;
            text-align: center;
            margin: 0 0 4px 0;
        }

        .group-sub {
            font-size: 0.95rem;
            text-align: center;
            margin: 0 0 15px 0;
            font-style: italic;
        }

        /* Programs List Layout */
        .program-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            max-width: 400px;
            margin: 0 auto;
            padding: 0;
            list-style-type: none;
        }

        .program-list li {
            position: relative;
            padding-left: 15px;
            font-weight: 600;
            margin-left:50px;
        }

        .program-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: currentColor;
        }

        /* Inline horizontal list layout for Group 3 */
        .program-list-inline {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            padding: 0;
            list-style-type: none;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .program-list-inline li::before {
            content: "• ";
            margin-right: 5px;
        }

        .center-text-bold {
            text-align: center;
            font-weight: bold;
            font-size: 1.25rem;
            margin: 10px 0;
        }
        

        /* Footer Notes */
        .footnote-row td {
            background-color: #ffffff;
            font-size: 0.9rem;
            padding: 12px 20px;
            color: #444;
        }
        

        /* Responsive Breakpoint for Mobile Devices */
        @media (max-width: 768px) {
            table, tbody, tr, td, th {
                display: block;
                width: 100%;
                box-sizing: border-box;
            }

            thead {
                display: none; /* Handled by mobile title header instead */
            }

            .mobile-title {
                background-color: var(--primary-blue);
                color: white;
                text-align: center;
                padding: 15px;
                font-size: 20px;
                font-weight: bold;
                display: block;
            }

            tr {
                border-bottom: 4px solid #ccc;
            }

            .limit-cell {
                border-right: none;
                border-bottom: 1px dashed #ccc;
                padding: 15px;
                width: 100%;
            }

            .group-cell {
                padding: 20px 15px;
                width: 100%;
            }

            .program-list {
                grid-template-columns: 1fr;
                max-width: 100%;
                padding-left: 20px;
            }
            
            .footnote-row td {
                border-bottom: 1px solid #ddd;
            }
        }

        /* Hide desktop helper elements if necessary */
        @media (min-width: 769px) {
            .mobile-title {
                display: none;
            }
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8b3e7a9 */:root {
            --primary-blue: #005782;
            --accessible-gold: #f1c400; 
            --light-blue-bg: #E1F0FD;
            --light-gold-bg: #FCF3CC;
            --text-dark: #222222;
        }


        .cpl-container {
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid #ccc;
            border-radius: 8px;
            overflow: hidden;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        th {
            background-color: var(--primary-blue);
            color: white;
            padding: 20px;
            font-size: 1.5rem;
            text-align: center;
        }

        .header-note {
            background-color: #f0f4f8;
            padding: 15px;
            text-align: center;
            font-weight: 600;
            border-bottom: 2px solid #ccc;
        }

        .step-row {
            border-bottom: 1px solid #ddd;
        }

        .step-num-cell {
            width: 70px;
            text-align: center;
            vertical-align: middle;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            padding: 15px;
        }

        .step-num-cell.odd { background-color: var(--primary-blue); }
        .step-num-cell.even { background-color: var(--accessible-gold); }

        .step-content-cell {
            padding: 20px;
            vertical-align: top;
        }

        .step-row:nth-child(odd) .step-content-cell { background-color: var(--light-blue-bg); }
        .step-row:nth-child(even) .step-content-cell { background-color: var(--light-gold-bg); }

        .step-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-top: 0;
            margin-bottom: 8px;
        }

        .footer-note {
            background-color:var(--light-blue-bg);
            padding: 20px;
            font-size: 0.95rem;
            border-top: 2px solid #ccc;
        }

        .footer-note ul {
            margin: 8px 0 0 0;
            padding-left: 20px;
        }

        .footer-note li {
            margin-bottom: 6px;
        }
        
         .mobile-header {
                background-color: var(--primary-blue);
                color: white;
                text-align: center;
                padding: 15px;
                font-size: 18px;
                font-weight: bold;
                display: block;
            }

        /* Responsive Mobile Layout (Stacked Cards) */
        @media (max-width: 600px) {
            table, thead, tbody, th, td, tr {
                display: block;
                width: 100%;
            }

            thead tr {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }

            .mobile-header {
                background-color: var(--primary-blue);
                color: white;
                text-align: center;
                padding: 15px;
                font-size: 1.4rem;
                font-weight: bold;
            }

            .header-note {
                border-bottom: 1px solid #ccc;
            }

            .step-row {
                display: flex;
                flex-direction: column;
                border-bottom: 4px solid #ccc;
            }

            .step-num-cell {
                width: auto;
                padding: 10px;
                font-size: 1.3rem;
                text-align: left;
                display: flex;
                align-items: center;
            }

            .step-num-cell::before {
                content: "Step ";
                margin-right: 5px;
            }

            .step-content-cell {
                padding: 15px;
            }
        }

        /* Screen reader utility helper */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }/* End custom CSS */