
        :root {
            --saffron: #FF9933;
            --white: #FFFFFF;
            --green: #138808;
            --navy: #000080;
            --teal: #008080;
            --gold: #FFD700;
            --light-saffron: #fff5e6;
            --light-green: #e6f4ea;
            --light-navy: #e6e6ff;
            --dark-green: #0a5a04;
        }
        
        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #eef2f6 100%);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        .navbar {
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
            padding: 0.8rem 0;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #1a472a 0%, #2e7d32 100%);
            border-radius: 20px;
            padding: 3rem 2rem;
            margin-bottom: 2.5rem;
            position: relative;
            overflow: hidden;
            color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
            z-index: 1;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 20%);
            z-index: 0;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 18px;
            margin-bottom: 30px;
            font-weight: 700;
            color: var(--navy);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--saffron), var(--green));
            border-radius: 2px;
        }
        
        .card-converter {
            border-radius: 18px;
            border: none;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: all 0.4s ease;
            background-color: white;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .card-converter:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.18);
        }
        
        .card-header {
            background: linear-gradient(135deg, var(--saffron), #e67300);
            border-top-left-radius: 18px !important;
            border-top-right-radius: 18px !important;
            padding: 1.3rem 1.8rem;
            font-weight: 700;
            color: white;
            border: none;
        }
        
        .form-label {
            font-weight: 600;
            color: #444;
            margin-bottom: 0.5rem;
        }
        
        .form-control, .form-select {
            border-radius: 14px;
            padding: 0.85rem 1.2rem;
            border: 1px solid #ddd;
            transition: all 0.3s;
            font-size: 1.05rem;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--saffron);
            box-shadow: 0 0 0 0.3rem rgba(255, 153, 51, 0.2);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--saffron), #e67300);
            border: none;
            border-radius: 14px;
            padding: 0.9rem 1.8rem;
            font-weight: 700;
            transition: all 0.3s;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 153, 51, 0.4);
        }
        
        .result-box {
            background: linear-gradient(135deg, var(--light-green), #d4edda);
            border-radius: 14px;
            padding: 1.8rem;
            margin-top: 25px;
            border-left: 5px solid var(--green);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .conversion-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        
        .conversion-table th {
            background: linear-gradient(135deg, var(--light-navy), #d1e0ff);
            padding: 1.2rem;
            text-align: left;
            font-weight: 700;
            color: var(--navy);
            font-size: 1.1rem;
        }
        
        .conversion-table td {
            padding: 1.1rem;
            border-bottom: 1px solid #eee;
            font-weight: 500;
        }
        
        .conversion-table tr:nth-child(even) {
            background-color: #f9f9ff;
        }
        
        .conversion-table tr:last-child td {
            border-bottom: none;
        }
        
        .info-card {
            background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
            border-radius: 18px;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            border-left: 5px solid var(--navy);
            margin-bottom: 2rem;
        }
        
        .unit-badge {
            display: inline-block;
            padding: 8px 18px;
            margin-right: 10px;
            margin-bottom: 12px;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 12px;
            background: rgba(255,255,255,0.95);
            color: #333;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .unit-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        
        .district-highlight {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            padding: 2.5rem;
            border-radius: 18px;
            margin-bottom: 2.5rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        
        .district-pattern {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: 
                radial-gradient(circle at 90% 10%, rgba(26, 71, 42, 0.05) 0%, transparent 15%),
                radial-gradient(circle at 10% 90%, rgba(26, 71, 42, 0.05) 0%, transparent 15%);
            z-index: 0;
        }
        
        .district-title {
            color: var(--navy);
            font-weight: 800;
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
            font-size: 1.8rem;
        }
        
        .district-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--saffron);
            border-radius: 2px;
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--saffron), #e67300);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 6px 15px rgba(255, 153, 51, 0.3);
        }
        
        .value-card {
            background: white;
            border-radius: 14px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
        }
        
        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }
        
        .value-card h3 {
            color: var(--navy);
            font-weight: 700;
        }
        
        .value-card p {
            color: #666;
            margin-bottom: 0;
        }
        
        .price-progress {
            height: 12px;
            border-radius: 10px;
        }
        
        .breadcrumb {
            background-color: rgba(255,255,255,0.9);
            border-radius: 50px;
            padding: 0.7rem 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        
        .breadcrumb-item a {
            color: var(--navy);
            text-decoration: none;
            font-weight: 500;
        }
        
        .breadcrumb-item.active {
            color: var(--saffron);
            font-weight: 600;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 18px;
            padding: 1.8rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            position: relative;
            border-left: 4px solid var(--saffron);
        }
        
        .testimonial-card::before {
            content: """;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(255, 153, 51, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 1.5rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--saffron), #e67300);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 15px;
        }
        
        @media (max-width: 992px) {
            .hero-section {
                padding: 2rem 1.5rem;
            }
            
            .district-highlight {
                padding: 2rem;
            }
            
            .district-title {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 1.8rem 1.2rem;
            }
            
            .district-highlight {
                padding: 1.8rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
        }
    