        :root {
            --primary-color: #2c7da0;
            --secondary-color: #a9d6e5;
            --accent-color: #01497c;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
        }
        
     .display-5{font-size:2.5rem}
        /* Turnover Specific Styles */
        .input-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .cost-group {
            margin-bottom: 1.5rem;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }
        
        .cost-group h5 {
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .result-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .result-card {
            background-color: white;
            border-radius: 8px;
            
            padding: 1.25rem;
            text-align: center;
        }
        
        .result-card-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        
        .result-card-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .result-card-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        
        .cost-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
        }
        
        .cost-table th, 
        .cost-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        
        .cost-table th {
            background-color: var(--light-gray);
            font-weight: 600;
        }
        
        .cost-table tr:hover {
            background-color: rgba(44, 125, 160, 0.05);
        }
        
        .cost-table .cost-amount {
            text-align: right;
            font-weight: 600;
        }
        
        .cost-table .turnover-cost {
            color: var(--danger-color);
        }
        
        .chart-container {
            height: 300px;
            margin-top: 2rem;
        }
        
        .disclaimer-box {
            background-color: rgba(255, 193, 7, 0.15);
            border-left: 4px solid var(--warning-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        
        .strategy-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .strategy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .strategy-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .strategy-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }
        
        .strategy-list {
            padding-left: 1.5rem;
        }
        
        .strategy-list li {
            margin-bottom: 0.5rem;
            position: relative;
        }
        
        .strategy-list li:before {
            content: "✓";
            position: absolute;
            left: -1.5rem;
            color: var(--success-color);
            font-weight: bold;
        }
        
        .industry-benchmark {
            background-color: rgba(44, 125, 160, 0.1);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .related-tools{display:none}
        .benchmark-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .benchmark-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .benchmark-item:last-child {
            border-bottom: none;
        }
        
        .benchmark-category {
            font-weight: 500;
        }
        
        .benchmark-value {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .impact-section {
            background-color: rgba(220, 53, 69, 0.05);
            border-left: 4px solid var(--danger-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-top: 2rem;
        }
        
        .impact-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--danger-color);
        }
        
        .impact-list li {
            margin-bottom: 0.75rem;
            padding-left: 0rem;
            position: relative;
        } 
        .retention-calculator {
            background-color: rgba(40, 167, 69, 0.1);
            border-left: 4px solid var(--success-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-top: 2rem;
        }
        
        .retention-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--success-color);
        }
        
        .savings-result {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--success-color);
            margin-top: 1rem;
        }
        
        .knowledge-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        
        .knowledge-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .knowledge-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .knowledge-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }
        
        .knowledge-content {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }
        
        .knowledge-link {
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .knowledge-link:hover {
            text-decoration: underline;
        }
        
        .stat-bubble {
            background-color: var(--primary-color);
            color: white;
            border-radius: 20px;
            padding: 0.5rem 1rem;
            display: inline-block;
            margin: 0.5rem 0;
            font-weight: 600;
        }
        
        .content-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }
        
        .section-header {
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .content-highlight {
            background-color: rgba(44, 125, 160, 0.1);
            padding: 1rem;
            border-radius: 6px;
            margin: 1rem 0;
        }
        
        .strategy-list {
            padding-left: 1.5rem;
        }
        
        .strategy-list li {
            margin-bottom: 0.75rem;
            position: relative;
        }
        
        .strategy-list li:before {
            content: "✓";
            position: absolute;
            left: -1.5rem;
            color: var(--success-color);
            font-weight: bold;
        }
    