
        .table-container {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 2rem;
            overflow: hidden;
        }

        /* Table Styles */
        .table {
            margin: 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .table thead {
            background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--secondary-maroon) 100%);
            color: white;
        }

        .table thead th {
            border: none;
            padding: 1rem;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: left;
        }

        .table tbody tr {
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--light-gray);
        }

        .table tbody tr:hover {
            background: var(--light-gray);
            transform: scale(1.01);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .table tbody td {
            padding: 1rem;
            vertical-align: middle;
            color: var(--text-dark);
        }

        .table tbody td:first-child {
            font-weight: 600;
            color: var(--primary-maroon);
        }

        .table tbody td a {
            color: var(--secondary-maroon);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .table tbody td a:hover {
            color: var(--primary-maroon);
            text-decoration: underline;
        }

        .executive-note {
            background: #fff9e6;
            border: 2px solid #ffd700;
            border-radius: 8px;
            padding: 1rem;
            margin-top: 1.5rem;
            text-align: center;
            font-style: italic;
            color: var(--text-dark);
        }
        
        /* Ordered List Styling */
        .content-card ol {
            counter-reset: item;
            list-style: none;
            padding-left: 0;
        }

        .content-card ol > li {
            counter-increment: item;
            margin-bottom: 2rem;
            padding-left: 3rem;
            position: relative;
            background: var(--light-gray);
            padding: 1.5rem;
            padding-left: 4rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-maroon);
            transition: all 0.3s ease;
        }

        .content-card ol > li:hover {
            background: var(--medium-gray);
            transform: translateX(5px);
            box-shadow: var(--shadow);
        }

        .content-card ol > li::before {
            content: counter(item);
            position: absolute;
            left: 1rem;
            top: 1.5rem;
            background: var(--primary-maroon);
            color: white;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .content-card ol > li strong {
            color: var(--secondary-maroon);
            font-size: 1.1rem;
        }

        /* Nested Lists */
        .content-card ol ol,
        .content-card ol ul,
        .content-card ul {
            margin-top: 1rem;
            margin-bottom: 0;
        }

        .content-card ol ol li,
        .content-card ol ul li {
            background: white;
            margin-bottom: 0.75rem;
            padding: 0.75rem 1rem;
            border-radius: 6px;
            border-left: 3px solid var(--secondary-maroon);
        }

        .content-card ul {
            list-style: none;
            padding-left: 0;
        }

        .content-card ul li {
        background: white;
        margin-bottom: 0.75rem;
        padding: 1.75rem 1rem;
        padding-left: 13rem;
        border-radius: 6px;
        border-left: 3px solid var(--secondary-maroon);
        position: relative;
        }
    
        .content-card a {
            color: var(--secondary-maroon);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .content-card a:hover {
            color: var(--primary-maroon);
            text-decoration: underline;
        }

        /* Fee Box */
        .fee-box {
            background: #fff9e6;
            border: 2px solid #ffd700;
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1rem;
        }

        .fee-box ul {
            margin-bottom: 0;
        }

        .fee-box li {
            background: transparent;
            border: none;
            padding-left: 1rem;
        }