        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        
        .navbar {
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;

        }
        
        .hero-section h1 {
            font-size: 4rem;
            font-weight: 700;
        }
		
        .hero-section h2 {
            font-size: 3rem;
            font-weight: 700;
        }
			
        .hero-section h3 {
            font-size: 1.75rem;
            font-weight: 500;
        }			

        .hero-section p {
            font-size: 1.5rem;
            opacity: 0.95;
        }
        
        .btn-custom {
            background-color: white;
            color: #667eea;
            padding: 12px 30px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            transition: transform 0.2s;
        }
        
        .btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .feature-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .feature-icon i {
            font-size: 24px;
            color: white;
        }
        
        footer {
            background-color: #1e293b;
            color: white;
            padding: 40px 0 20px;
			margin-top:0;
        }
        
        footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        footer a:hover {
            color: white;
        }

.internal-header  {
    margin-bottom:0;
}		
		
.internal-header h1 {
    font-weight: 700;
    color: #1e293b;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #64748b;
}


.card {
    border-radius: 12px;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-left: none;
}