:root {
            --primary-color: #2c7da0;
            --secondary-color: #a9d6e5;
            --accent-color: #01497c;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --info-color: #17a2b8;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
        }
          .page-header {
            background: linear-gradient(135deg, rgba(169, 214, 229, 0.4) 0%, rgba(44, 125, 160, 0.4) 100%);
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(44, 125, 160, 0.2);
            position: relative;
            overflow: hidden;   color: var(--text-color);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0.5rem 0;
            margin-bottom: 0.5rem;
        }
        .breadcrumb-item a {
            color: var(--text-muted);
            text-decoration: none;
        }
        .breadcrumb-item.active {
            color: var(--text-color);
        }
        .calculation-step {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .total-estimate {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 8px;
            padding: 1.5rem;
            border: 2px solid var(--primary-color);
            margin: 1.5rem 0;
            text-align: center;
        }
        .total-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-color);
            margin: 0.5rem 0;
        }
        .total-label {
            font-size: 1.2rem;
            color: var(--text-muted);
        }
        .warning-box {
            background-color: rgba(255, 193, 7, 0.1);
            border-left: 3px solid var(--warning-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        @media (max-width: 768px) {
            .total-value {
                font-size: 2rem;
            }
        }
        .benefit-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem;
            border-bottom: 1px solid var(--border-color);
        }
        .benefit-item:last-child {
            border-bottom: none;
        }
        .benefit-name {
            font-weight: 500;
        }
        .benefit-value {
            font-weight: 600;
            color: var(--primary-color);
        }
        .injury-type-selector {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .injury-btn {
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 0.75rem;
            flex: 1;
            min-width: 120px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .injury-btn:hover {
            background-color: rgba(44, 125, 160, 0.1);
        }
        .injury-btn.active {
            background-color: rgba(44, 125, 160, 0.2);
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin: 1.5rem 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 1.5rem;
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-marker {
            position: absolute;
            left: -20px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-color);
            border: 2px solid white;
        }
        .state-badge {
            display: inline-block;
            background-color: var(--light-gray);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            margin: 0.25rem;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .state-badge:hover {
            background-color: rgba(44, 125, 160, 0.2);
        }
        .state-badge.active {
            background-color: var(--primary-color);
            color: white;
        }
        .disclaimer-box {
            background-color: rgba(255, 193, 7, 0.1);
            border: 1px solid var(--warning-color);
            border-radius: 6px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 576px) {
            .injury-btn {
                min-width: calc(50% - 0.5rem);
            }
            .total-value {
                font-size: 1.8rem;
            }
            .state-badge {
                padding: 0.2rem 0.5rem;
                font-size: 0.8rem;
            }
        }
        .legal-warning {
            background-color: rgba(220, 53, 69, 0.05);
            border-left: 4px solid var(--danger-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
            font-weight: 600;
        }
     