        :root {
            --primary-color: #2c7da0;
            --secondary-color: #a9d6e5;
            --accent-color: #01497c;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --border-color: #dee2e6;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --public-color: #4e73df;
            --private-color: #e74a3b;
            --in-state-color: #1cc88a;
            --out-state-color: #f6c23e;
        }
        
   
        .cost-section {
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }
        
        .input-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .result-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.25rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .result-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        
        .result-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0.5rem 0;
        }
        
        .result-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        
        .chart-container {
            height: 300px;
            margin: 2rem 0;
        }
        
        .cost-breakdown {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .cost-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem;
            margin-bottom: 0.75rem;
            background-color: rgba(44, 125, 160, 0.05);
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .cost-item:hover {
            background-color: rgba(44, 125, 160, 0.1);
            transform: translateY(-1px);
        }
        
        .cost-name {
            font-weight: 500;
        }
        
        .cost-amount {
            font-weight: 600;
        }
        
        .savings-card {
            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;
        }
        
        .savings-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--success-color);
        }
        
        .tip-card {
            background-color: rgba(255, 193, 7, 0.1);
            border-left: 4px solid var(--warning-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-top: 2rem;
        }
        
        .tip-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--warning-color);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
        }
        
        .comparison-table th, 
        .comparison-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        
        .comparison-table th {
            background-color: var(--light-bg);
            font-weight: 600;
        }
        
        .comparison-table tr:hover {
            background-color: rgba(44, 125, 160, 0.05);
        }
        
        .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;
        }
        
        .type-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-right: 0.5rem;
        }
        
        .public-badge {
            background-color: rgba(78, 115, 223, 0.1);
            color: var(--public-color);
            border: 1px solid var(--public-color);
        }
        
        .private-badge {
            background-color: rgba(231, 74, 59, 0.1);
            color: var(--private-color);
            border: 1px solid var(--private-color);
        }
        
        .in-state-badge {
            background-color: rgba(28, 200, 138, 0.1);
            color: var(--in-state-color);
            border: 1px solid var(--in-state-color);
        }
        
        .out-state-badge {
            background-color: rgba(246, 194, 62, 0.1);
            color: var(--out-state-color);
            border: 1px solid var(--out-state-color);
        }
        
        .school-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
        }
        
        .school-name {
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .school-type {
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .match-indicator {
            height: 8px;
            background-color: #e9ecef;
            border-radius: 4px;
            margin: 0.5rem 0;
            overflow: hidden;
        }
        
        .match-fill {
            height: 100%;
            border-radius: 4px;
        }
        
        .match-label {
            font-size: 0.85rem;
            text-align: right;
        }
        
        .resource-card {
            display: flex;
            align-items: center;
            padding: 1rem;
            margin-bottom: 1rem;
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }
        
        .resource-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .resource-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .input-row {
                grid-template-columns: 1fr;
            }
            .cost-section{padding:0rem;border:0rem}
        
        }
      .feature-card {
            background: linear-gradient(135deg, rgba(169, 214, 229, 0.15) 0%, rgba(44, 125, 160, 0.15) 100%);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid var(--border-color);
        }
        
        .feature-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1.5rem;
        }
        
        .feature-title {
            font-weight: 600;
            color: var(--primary-color);
            margin: 0;
        }
        
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .stat-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1rem;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .stat-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .success-story {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            position: relative;
        }
        
        .success-story::before {
            content: """;
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 5rem;
            color: var(--primary-color);
            opacity: 0.1;
            font-family: Georgia, serif;
        }
        
        .story-content {
            font-style: italic;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .story-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .story-college {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .resource-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .resource-item {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
        }
        
        .resource-item:last-child {
            border-bottom: none;
        }
        
        .resource-icon {
            width: 30px;
            height: 30px;
            background-color: rgba(44, 125, 160, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--primary-color);
        }
        
        .resource-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .resource-link:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .interactive-box {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            text-align: center;
        }
        
        .interactive-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .savings-slider {
            width: 100%;
            margin: 1rem 0;
        }
        
        .savings-result {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--success-color);
            margin: 1rem 0;
        }