        :root {
            --primary-blue: #1a4a8f;
            --secondary-blue: #2c6bc0;
            --light-blue: #e8f1ff;
            --accent-blue: #0a2a5a;
            --white: #ffffff;
            --gray-light: #f8f9fa;
            --gray-medium: #e9ecef;
            --success-green: #28a745;
            --warning-orange: #ffc107;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            padding-top: 80px; /* For fixed navbar */
        }
        
        /* Fixed Navigation Bar */
        .navbar {
            background-color: var(--white) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            margin-right: 2rem;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            background-color: var(--primary-blue);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.8rem;
        }
        
        .logo-text {
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1.2;
        }
        
        .logo-text .main {
            font-size: 1.4rem;
        }
        
        .logo-text .sub {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-blue) !important;
            font-weight: 500;
            padding: 8px 15px !important;
            margin: 0 5px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            background-color: var(--light-blue);
            color: var(--accent-blue) !important;
        }
        
        /* Breadcrumb Section */
        .breadcrumb-container {
            background-color: var(--light-blue);
            padding: 30px 0 20px;
            margin-bottom: 50px;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0;
            margin-bottom: 0;
        }
        
        .breadcrumb-item a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
        }
        
        .breadcrumb-item.active {
            color: var(--accent-blue);
            font-weight: 600;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--secondary-blue);
        }
        
        /* Page Header */
        .page-header {
            padding: 20px 0;
            margin-bottom: 30px;
            border-bottom: 3px solid var(--secondary-blue);
        }
        
        .page-title {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .page-subtitle {
            color: var(--secondary-blue);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .header-icon {
            width: 80px;
            height: 80px;
            background-color: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
            color: var(--primary-blue);
        }
        
        /* Service Categories */
        .category-header {
            background-color: var(--primary-blue);
            color: white;
            padding: 15px 20px;
            border-radius: 8px 8px 0 0;
            margin-bottom: 0;
            display: flex;
            align-items: center;
        }
        
        .category-header i {
            margin-right: 10px;
            font-size: 1.3rem;
        }
        
        /* Cards */
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .card-icon {
            width: 60px;
            height: 60px;
            background-color: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px auto 15px;
            font-size: 1.5rem;
            color: var(--primary-blue);
        }
        
        .card-title {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .card-body {
            padding: 25px;
        }
        
        .service-card {
            border-top: 5px solid var(--secondary-blue);
            min-height: 320px;
        }
        
        .service-card .card-icon {
            background-color: rgba(44, 107, 192, 0.1);
        }
        
        /* Service Details */
        .service-detail {
            border-left: 5px solid var(--primary-blue);
            padding-left: 20px;
            margin-bottom: 25px;
        }
        
        .service-detail h5 {
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        
        .service-detail ul {
            padding-left: 20px;
        }
        
        .service-detail li {
            margin-bottom: 8px;
        }
        
        /* Process Steps */
        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .step-content h5 {
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        
        /* Service Actions */
        .action-buttons {
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .btn-custom {
            background-color: var(--primary-blue);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-custom:hover {
            background-color: var(--accent-blue);
            color: white;
        }
        
        .btn-outline-custom {
            background-color: transparent;
            color: var(--primary-blue);
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            border: 2px solid var(--primary-blue);
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--light-blue);
            color: var(--accent-blue);
        }
        
        /* Service Status Badge */
        .status-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .status-available {
            background-color: rgba(40, 167, 69, 0.15);
            color: var(--success-green);
        }
        
        .status-process {
            background-color: rgba(255, 193, 7, 0.15);
            color: #d39e00;
        }
        
        /* How to Apply Section */
        .apply-section {
            background-color: var(--light-blue);
            padding: 40px 0;
            border-radius: 10px;
            margin: 50px 0;
        }
        
        .apply-step {
            text-align: center;
            padding: 20px;
        }
        
        .apply-step i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--accent-blue);
            color: var(--white);
            padding-top: 60px;
            margin-top: 60px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }
        
        .footer-links h5 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-blue);
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #b8d0ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-blue);
            margin-top: 5px;
        }
        
        .copyright {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .navbar-nav {
                text-align: center;
                padding-top: 10px;
            }
            
            .logo-text .main {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .step-number {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                margin-right: 15px;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .action-buttons .btn {
                width: 100%;
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .logo-text .main {
                font-size: 1rem;
            }
            
            .logo-text .sub {
                font-size: 0.8rem;
            }
            
            .page-title {
                font-size: 1.5rem;
            }
        }   