
        :root {
            --saffron: #FF9933;
            --white: #FFFFFF;
            --green: #138808;
            --navy: #000080;
            --teal: #008080;
            --gold: #FFD700;
            --bihar-purple: #6a1b9a;
        }
        
        body {
            background-color: #f9f9f9;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        
        .hero-section {
            background: linear-gradient(135deg, rgba(106, 27, 154, 0.9), rgba(74, 20, 140, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%236a1b9a" fill-opacity="0.1"/></svg>');
            background-size: cover;
            border-radius: 16px;
            padding: 3rem 2rem;
            margin-bottom: 2rem;
            color: white;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        
        .tool-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: none;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1;
            margin-bottom: 2rem;
            background: white;
        }
        
        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
            z-index: 2;
        }
        
        .tool-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        
        .card-header {
            background-color: var(--bihar-purple);
            color: white;
            font-weight: 600;
            padding: 1.2rem 1.5rem;
            border-bottom: none;
        }
        
        .card-body {
            padding: 1.8rem;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--bihar-purple);
            box-shadow: 0 0 0 0.25rem rgba(106, 27, 154, 0.25);
        }
        
        .btn-primary {
            background-color: var(--bihar-purple);
            border-color: var(--bihar-purple);
        }
        
        .btn-primary:hover {
            background-color: #5a189a;
            border-color: #5a189a;
        }
        
        .result-card {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            border-left: 4px solid var(--bihar-purple);
        }
        
        .district-info {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        
        .info-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            color: white;
            font-size: 1.8rem;
            background: linear-gradient(135deg, var(--bihar-purple), #8e44ad);
            margin: 0 auto 1rem;
        }
        
        .map-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            height: 300px;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: 500;
        }
        
        .unit-badge {
            display: inline-block;
            padding: 5px 12px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 8px;
            background-color: rgba(106, 27, 154, 0.1);
            color: var(--bihar-purple);
            border: 1px solid rgba(106, 27, 154, 0.2);
        }
        
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        h2.section-title {
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 1.8rem;
            color: var(--bihar-purple);
        }
        
        h2.section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--bihar-purple), #9c27b0);
            border-radius: 2px;
        }
        
        .footer {
            background: var(--navy);
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 4px solid var(--saffron);
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0.75rem 0;
        }
        
        .structured-data {
            display: none;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 1rem;
            }
            .card-body {
                padding: 1.2rem;
            }
            h1 {
                font-size: 2rem;
            }
        }
  