        :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;
        }
        
        
        /* Salary Calculator Specific Styles */
        .salary-input-group {
            margin-bottom: 1.5rem;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }
        
        .salary-input-group h5 {
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .input-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .deduction-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            padding: 0.75rem;
            background-color: rgba(44, 125, 160, 0.05);
            border-radius: 6px;
        }
        
        .deduction-item input {
            margin-right: 0.75rem;
        }
        
        .deduction-label {
            flex-grow: 1;
        }
        
        .deduction-amount {
            width: 120px;
        }
        
        .salary-result-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .salary-result-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.25rem;
            text-align: center;
        }
        
        .salary-result-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        
        .salary-result-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .salary-result-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        
        .deduction-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
        }
        
        .deduction-table th, 
        .deduction-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        
        .deduction-table th {
            background-color: var(--light-gray);
            font-weight: 600;
        }
        
        .deduction-table tr:hover {
            background-color: rgba(44, 125, 160, 0.05);
        }
        
        .deduction-table .deduction-amount {
            text-align: right;
            font-weight: 600;
        }
        
        .deduction-table .tax-amount {
            color: var(--danger-color);
        }
        
        .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;
        }
        
        .guide-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;
        }
        
        .guide-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .guide-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .guide-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }
        
        .guide-description {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }
        
        .guide-link {
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .guide-link:hover {
            text-decoration: underline;
        }
        
        .chart-container {
            height: 300px;
            margin-top: 2rem;
        }
        
        .finance-tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .finance-tool-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }
        
        .finance-tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: var(--primary-color);
        }
        
        .finance-tool-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .finance-tool-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .finance-tool-desc {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }
        
        .tax-bracket {
            margin-bottom: 1.5rem;
            padding: 1rem;
            border-left: 3px solid var(--primary-color);
            background-color: rgba(44, 125, 160, 0.05);
            border-radius: 0 6px 6px 0;
        }
        
        .tax-bracket-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .tax-bracket-range {
            font-weight: 500;
            margin-bottom: 0.25rem;
        }
        
        .tax-bracket-rate {
            font-weight: 700;
            color: var(--danger-color);
        }
        
        .pay-period-selector {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .pay-period-btn {
            flex: 1;
            padding: 0.75rem;
            background-color: var(--light-gray);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .pay-period-btn.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .pay-period-btn:hover:not(.active) {
            background-color: rgba(44, 125, 160, 0.1);
        }
    