:root {
            /* Primary Colors */
            --primary-blue: #2563eb;
            --primary-green: #059669;
            --primary-purple: #7c3aed;
            --primary-orange: #ea580c;
            
            /* Neutral Colors */
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            
            /* Accent Colors */
            --accent-blue-light: #dbeafe;
            --accent-green-light: #d1fae5;
            --accent-purple-light: #e9d5ff;
            --accent-orange-light: #fed7aa;
            
            /* Shadows */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--gray-50);
        }

        .fee-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--gray-800);
        }

        .fee-wrapper h1 {
            text-align: center;
            color: var(--gray-900);
            margin-bottom: 10px;
            font-size: 2.5em;
            font-weight: 700;
        }

        .subtitle {
            text-align: center;
            color: var(--gray-600);
            margin-bottom: 30px;
            font-size: 1.1em;
        }

        /* Tab Navigation */
        .tab-container {
            margin-bottom: 20px;
        }

        .tab-nav {
            display: flex;
            flex-wrap: wrap;
            background: white;
            border-radius: 12px 12px 0 0;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-200);
            border-bottom: none;
        }

        .tab-button {
            flex: 1;
            min-width: 150px;
            padding: 16px 20px;
            background: white;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            border-right: 1px solid var(--gray-200);
            color: var(--gray-700);
            position: relative;
        }

        .tab-button:last-child {
            border-right: none;
        }

        .tab-button:hover {
            background: var(--gray-50);
        }

        .tab-button small {
            display: block;
            font-size: 12px;
            font-weight: 400;
            color: var(--gray-500);
            margin-top: 2px;
        }

        .tab-button.active {
            color: white;
            transform: none;
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: currentColor;
        }

        /* Age Group Specific Colors */
        .tab-button.age-1-2-standard.active {
            background: var(--primary-blue);
            color: white;
        }

        .tab-button.age-1-2-short.active {
            background: var(--primary-orange);
            color: white;
        }

        .tab-button.age-2-5-standard.active {
            background: var(--primary-green);
            color: white;
        }

        .tab-button.age-2-5-short.active {
            background: var(--primary-purple);
            color: white;
        }

        .tab-button.complete-view.active {
            background: var(--gray-800);
            color: white;
        }

        /* Tab Content */
        .tab-content {
            display: none;
            background: white;
            border-radius: 0 0 12px 12px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-200);
            border-top: none;
            overflow: hidden;
        }

        .tab-content.active {
            display: block;
        }

        .fee-wrapper h2 {
            color: white;
            padding: 24px 30px;
            margin: 0;
            font-size: 1.75em;
            font-weight: 600;
            text-align: center;
        }

        .fee-wrapper h3 {
            color: var(--gray-900);
            margin: 25px 0 15px 0;
            font-size: 1.25em;
            font-weight: 600;
            padding: 10px 0;
            border-bottom: 2px solid var(--gray-100);
        }

        /* Age Group Color Coding */
        .age-1-2-standard h2 {
            background: var(--primary-blue);
        }

        .age-1-2-short h2 {
            background: var(--primary-orange);
        }

        .age-2-5-standard h2 {
            background: var(--primary-green);
        }

        .age-2-5-short h2 {
            background: var(--primary-purple);
        }

        .complete-view h2 {
            background: var(--gray-800);
        }

        .fee-wrapper .section {
            padding: 30px;
        }

        .age-1-2-standard .session-block {
            border-left: 4px solid var(--primary-blue);
            padding-left: 20px;
            margin-left: -20px;
        }

        .age-1-2-short .session-block {
            border-left: 4px solid var(--primary-orange);
            padding-left: 20px;
            margin-left: -20px;
        }

        .age-2-5-standard .session-block {
            border-left: 4px solid var(--primary-green);
            padding-left: 20px;
            margin-left: -20px;
        }

        .age-2-5-short .session-block {
            border-left: 4px solid var(--primary-purple);
            padding-left: 20px;
            margin-left: -20px;
        }

        .fee-wrapper table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
        }

        .fee-wrapper th {
            background: var(--gray-800);
            color: white;
            padding: 16px 12px;
            text-align: left;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .fee-wrapper td {
            padding: 14px 12px;
            border-bottom: 1px solid var(--gray-100);
        }

        .fee-wrapper tr:last-child td {
            border-bottom: none;
        }

        .fee-wrapper tr:hover {
            background: var(--gray-50);
        }

        .fee-wrapper .price {
            font-weight: 600;
            color: var(--gray-900);
            text-align: right;
            font-size: 16px;
        }

        .fee-wrapper .highlight {
            background: var(--accent-orange-light);
            padding: 16px 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid var(--primary-orange);
            color: var(--gray-800);
        }

        .fee-wrapper .note {
            background: var(--accent-blue-light);
            padding: 16px 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid var(--primary-blue);
            font-style: italic;
            color: var(--gray-700);
        }

        .fee-wrapper .important-info {
            background: linear-gradient(135deg, var(--gray-50), white);
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: var(--shadow-md);
        }

        .fee-wrapper .important-info h3 {
            color: var(--gray-900);
            text-align: center;
            margin-bottom: 25px;
            border-bottom: 2px solid var(--primary-blue);
            padding-bottom: 10px;
        }

        .fee-wrapper .contact-info {
            background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
            color: white;
            padding: 30px;
            border-radius: 12px;
            margin-top: 40px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .fee-wrapper .contact-info h3 {
            color: white;
            margin-bottom: 20px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 10px;
        }

        .fee-wrapper .contact-info a {
            color: var(--accent-blue-light);
            text-decoration: none;
            font-weight: 500;
        }

        .fee-wrapper .contact-info a:hover {
            text-decoration: underline;
        }

        /* Session Type with immediate description */
        .session-block {
            margin-bottom: 35px;
            background: var(--gray-50);
            padding: 20px;
            border-radius: 8px;
        }

        .session-block h3 {
            margin-bottom: 10px;
            margin-top: 0;
            color: var(--gray-900);
        }

        .session-description {
            background: white;
            padding: 12px 16px;
            border-radius: 6px;
            margin: 10px 0 15px 0;
            font-size: 0.95em;
            color: var(--gray-600);
            border: 1px solid var(--gray-200);
        }

        /* Complete View Styles */
        .complete-view .age-group-section {
            margin-bottom: 40px;
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .complete-view .age-group-header {
            padding: 20px;
            color: white;
            font-size: 1.5em;
            font-weight: 600;
        }

        .complete-view .age-1-2-standard-header {
            background: var(--primary-blue);
        }

        .complete-view .age-1-2-short-header {
            background: var(--primary-orange);
        }

        .complete-view .age-2-5-standard-header {
            background: var(--primary-green);
        }

        .complete-view .age-2-5-short-header {
            background: var(--primary-purple);
        }

        .complete-view .age-group-content {
            padding: 25px;
            background: white;
        }

        /* Mobile Responsive Design */
        @media screen and (max-width: 768px) {
            .fee-wrapper {
                padding: 15px;
            }

            .fee-wrapper h1 {
                font-size: 2em;
            }

            .tab-nav {
                flex-direction: column;
            }

            .tab-button {
                min-width: auto;
                border-right: none;
                border-bottom: 1px solid var(--gray-200);
            }

            .tab-button:last-child {
                border-bottom: none;
            }

            .fee-wrapper h2 {
                font-size: 1.4em;
                padding: 20px;
            }

            .fee-wrapper table, 
            .fee-wrapper thead, 
            .fee-wrapper tbody, 
            .fee-wrapper th, 
            .fee-wrapper td, 
            .fee-wrapper tr {
                display: block;
            }

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

            .fee-wrapper tr {
                border: 1px solid var(--gray-200);
                margin-bottom: 10px;
                padding: 10px;
                border-radius: 8px;
                background: white;
            }

            .fee-wrapper td {
                border: none;
                position: relative;
                padding-left: 50% !important;
                padding-right: 10px;
                padding-top: 10px;
                padding-bottom: 10px;
                text-align: right;
            }

            .fee-wrapper td:before {
                content: attr(data-label) ": ";
                position: absolute;
                left: 10px;
                width: 45%;
                padding-right: 10px;
                white-space: nowrap;
                font-weight: 600;
                color: var(--gray-700);
                text-align: left;
            }

            .fee-wrapper .section {
                padding: 20px;
            }

            .session-block {
                padding: 15px;
            }
        }

        @media screen and (max-width: 480px) {
            .fee-wrapper {
                padding: 10px;
            }
            
            .fee-wrapper .section {
                padding: 15px;
            }

            .tab-button {
                font-size: 13px;
                padding: 14px 16px;
            }

            .tab-button small {
                font-size: 11px;
            }
        }
		
		/* Add to the existing CSS */

/* Gradient for Complete View tab - default state */
.tab-button.complete-view {
    background: white;
    color: var(--gray-700);
}

.tab-button.complete-view:hover {
    background: var(--gray-50);
}

/* Gradient for Complete View tab - active state only */
.tab-button.complete-view.active {
    background: linear-gradient(135deg, #2563eb, #059669, #7c3aed, #ea580c);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: white;
}

/* Fix for small text visibility on all active tabs */
.tab-button.active small {
    color: rgba(255, 255, 255, 0.9);
}

/* Gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Complete View content headers with gradient */
.complete-view h2,
.complete-view .age-group-header {
    background: linear-gradient(135deg, #2563eb, #059669, #7c3aed, #ea580c);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}