
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: 30px;
			      padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        headerr {
            background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
            color: white;
            padding: 25px 20px;
            text-align: center;
        }
        
        h1 {
            font-size: 1.8rem;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .subtitle {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .calculator-section, .results-section {
            padding: 25px 20px;
        }
        
        .section-title {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeaea;
            font-weight: 600;
        }
        
        .input-group {
            margin-bottom: 22px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #444;
            font-size: 0.95rem;
        }
        
        select, input {
            width: 100%;
            padding: 14px 16px;
            border: 1.5px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
            background-color: white;
        }
        
        select:focus, input:focus {
            outline: none;
            border-color: #4a6491;
            box-shadow: 0 0 0 3px rgba(74, 100, 145, 0.1);
        }
        
        .radio-group {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }
        
        .radio-option {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .radio-option input[type="radio"] {
            width: 20px;
            height: 20px;
        }
        
        .radio-option label {
            margin-bottom: 0;
            font-weight: normal;
        }
        
        .conditional-input {
            margin-top: 15px;
            padding-left: 15px;
            border-left: 3px solid #eaeaea;
            display: none;
        }
        
        .btn {
            background: linear-gradient(135deg, #4a6491 0%, #2c3e50 100%);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 8px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s;
            margin-top: 10px;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(74, 100, 145, 0.25);
        }
        
        .btn:active {
            transform: translateY(0);
        }
        
        .results-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin-top: 20px;
            border-left: 5px solid #4a6491;
        }
        
        .result-item {
            display: flex;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid #eaeaea;
        }
        
        .result-item:last-child {
            border-bottom: none;
            font-weight: 600;
            font-size: 1.1rem;
            color: #2c3e50;
        }
        
        .result-label {
            font-weight: 500;
        }
        
        .result-value {
            font-weight: 600;
            color: #2c3e50;
        }
        
        .cost-range {
            background-color: #e8f4fd;
            border-radius: 8px;
            padding: 20px;
            margin-top: 25px;
            border: 1px solid #c1e0ff;
        }
        
        .range-label {
            font-weight: 500;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .range-values {
            display: flex;
            justify-content: space-between;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .disclaimer {
            background-color: #fff8e1;
            border-radius: 8px;
            padding: 20px;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #856404;
            border-left: 4px solid #ffc107;
        }
        
        .disclaimer h3 {
            margin-bottom: 10px;
            color: #856404;
        }
        
        .state-rules {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin-top: 30px;
        }
        
        .state-rules-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
            font-size: 0.9rem;
        }
        
        .state-rules-table th {
            background-color: #4a6491;
            color: white;
            text-align: left;
            padding: 12px 15px;
            font-weight: 600;
        }
        
        .state-rules-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .state-rules-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        
        .calculation-details {
            background-color: #f0f7ff;
            border-radius: 8px;
            padding: 20px;
            margin-top: 25px;
            font-size: 0.9rem;
            border-left: 4px solid #4a6491;
        }
        
        .calculation-details h4 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .calculation-details ul {
            padding-left: 20px;
        }
        
        .calculation-details li {
            margin-bottom: 8px;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .action-btn {
            background: #6c757d;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            font-size: 0.95rem;
            cursor: pointer;
            flex: 1;
            transition: background-color 0.3s;
        }
        
        .action-btn.print {
            background: #28a745;
        }
        
        .action-btn.reset {
            background: #dc3545;
        }
        
        .action-btn:hover {
            opacity: 0.9;
        }
        
        @media (min-width: 768px) {
        
            
            h1 {
                font-size: 2.2rem;
            }
            
            .calculator-section, .results-section {
                padding: 30px;
            }
            
            .input-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 25px;
            }
            
            .btn {
                width: auto;
                padding: 16px 40px;
            }
            
            .state-rules-table {
                font-size: 1rem;
            }
            
            .action-buttons {
                flex-direction: row;
            }
        }
        
        @media (min-width: 992px) {
            .main-content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            .calculator-section {
                grid-column: 1;
            }
            
            .results-section {
                grid-column: 2;
            }
        }
