        :root {
            --police-blue: #004085;
            --police-gold: #c5a47e;
            --light-blue: #e6f0fa;
            --dark-blue: #002752;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        
        .header {
            background: linear-gradient(135deg, var(--police-blue), var(--dark-blue));
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .logo-container {
            text-align: center;
            padding: 20px 0;
            border-bottom: 1px solid #dee2e6;
            margin-bottom: 15px;
        }
        
        .logo {
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #dee2e6;
        }
        
        .department-name {
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .department-name h1 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0;
        }
        
        .department-name h2 {
            font-size: 1.4rem;
            font-weight: 400;
            margin-top: 5px;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link {
            font-weight: 600;
            color: var(--police-blue) !important;
            padding: 15px 20px !important;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--police-gold) !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--police-gold);
            transition: width 0.3s;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .page-header {
            background: linear-gradient(rgba(0, 64, 133, 0.8), rgba(0, 64, 133, 0.9)), url('https://images.unsplash.com/photo-1548092372-44d6d47e9e1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .section-title {
            color: var(--police-blue);
            font-weight: 700;
            position: relative;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--police-gold);
        }
        
        .section-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
            overflow: hidden;
        }
        
        .section-header {
            background: linear-gradient(135deg, var(--police-blue), var(--dark-blue));
            color: white;
            padding: 15px 20px;
            font-weight: 600;
        }
        
        .section-body {
            padding: 25px;
        }
        
        .table-responsive {
            border-radius: 8px;
            overflow: hidden;
        }
        
        .table thead {
            background-color: var(--police-blue);
            color: white;
        }
        
        .table th {
            font-weight: 600;
        }
        
        .table tbody tr:nth-child(even) {
            background-color: var(--light-blue);
        }
        
        .table tbody tr:hover {
            background-color: rgba(0, 64, 133, 0.1);
        }
        
        .responsibilities-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .responsibilities-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 30px;
        }
        
        .responsibilities-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--police-blue);
            position: absolute;
            left: 0;
            top: 14px;
        }
        
        .footer {
            background: linear-gradient(135deg, var(--dark-blue), var(--police-blue));
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer h5:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--police-gold);
        }
        
        .contact-info li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--police-gold);
            margin-top: 5px;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
        }
        
        .badge-service {
            background-color: var(--police-blue);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
        }
        
        @media (max-width: 768px) {
            .department-name h1 {
                font-size: 1.5rem;
            }
            
            .department-name h2 {
                font-size: 1.2rem;
            }
            
            .page-header {
                padding: 50px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .table-responsive {
                overflow-x: auto;
            }
        }