
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #1f87b2;
            --secondary: #2c5aa0;
            --accent: #4CAF50;
            --dark: #0d1b2a;
            --light: #f8f9fa;
            --gray: #6c757d;
        }
        
        body {
            /* subtle page background colouring (not elements) */
            background: linear-gradient(180deg, #f6f9ff 0%, #f8fbff 220px, #f9fafb 221px, #f9fafb 100%);
            color: #333;
            line-height: 1.6;
            background-attachment: scroll;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Dark Grey Announcement Bar */
        .announcement-bar {
            background-color: #4b5563;
            padding: 12px 0;
            text-align: center;
            color: white;
        }
        .announcement-bar p {
            margin: 0;
            font-size: 14px;
        }
        
        /* Header Styles */
        header {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            border-top: 3px solid #2bb3b3;
            border-bottom: 1px solid #e5e7eb;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }
        
        .topbar-left-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .topbar-left-content-top {
            display: flex;
            align-items: baseline;
            gap: 6px;
        }
        
        .topbar-middle-content {
            flex: 1;
        }
        
        .topbar-logo,
        .topbar-logo-medium {
            height: 24px;
            width: auto;
            display: block;
        }
        
        .topbar-partnership-logo-container {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #6b7280;
            font-size: 11px;
        }
        
        .topbar-partnership-logo-container > div {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .topbar-partner-logo,
        .topbar-partner-logo-medium {
            height: 14px;
            width: auto;
        }
        
        /* Mobile menu button */
        .topbar-menu-mobile-container {
            display: none;
        }
        
        .topbar-menu-toggle-button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }
        
        .topbar-menu-toggle-button img {
            width: 24px;
            height: 24px;
        }
        
        /* Desktop menu */
        .topbar-menu-desktop-container {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        
        .topbar-menu-desktop-link a {
            text-decoration: none;
            color: #1f87b2;            ;
            font-weight: 320;
            font-size: 20px;
            font-family: "Open Sans", sans-serif;
        }
        
        .topbar-menu-desktop-link a:hover {
            color: #1f87b2;;
        }
        
        @media (max-width: 768px) {
            .topbar-menu-mobile-container {
                display: block;
            }
            .topbar-menu-desktop-container {
                display: none;
            }
        }
        
        /* Hero Section */
        .hero {
            /* Landing-style teal/blue gradient background only (no content changes) */
            background:
                radial-gradient(80% 120% at 80% 40%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 60%),
                linear-gradient(90deg, #0f6d89 0%, #3e94b1 50%, #79c0d6 100%);
            color: white;
            padding: 10px 0;
            text-align: justify;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            /* remove old triangular overlay to keep clean background */
            content: "";
            position: absolute;
            inset: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .hero p {
            font-size: 18px;
            /*max-width: 700px;*/
            margin: 0 auto 30px;
        }
        
        /* Slideshow Styles */
        .slideshow-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 30px 20px;
            min-height: 250px;
        }
        
        .slide {
            display: none;
            animation: fadeIn 0.6s;
            text-align: left;
        }
        
        .slide.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .slide h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: white;
            font-weight: 700;
        }
        
        .slide h3 {
            font-size: 26px;
            margin-bottom: 25px;
            color: white;
            font-weight: 600;
        }
        
        .slide p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 25px;
            color: white;
        }
        
        .slide ul {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }
        
        .slide ul li {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 15px;
            color: white;
            padding-left: 10px;
        }
        
        /* Navigation arrows */
        .slide-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.25);
            color: white;
            border: none;
            font-size: 28px;
            padding: 20px 25px;
            cursor: pointer;
            border-radius: 8px;
            transition: background 0.3s, transform 0.2s;
            z-index: 10;
        }
        
        .slide-nav:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }
        
        .slide-nav.prev {
            left: 10px;
        }
        
        .slide-nav.next {
            right: 10px;
        }
        
        /* Slide indicators */
        .slide-indicators {
            text-align: center;
            margin-top: 0px;
            position: relative;
            left: 0;
            transform: none;
        }
        
        .slide-indicator {
            display: inline-block;
            width: 10px;
            height: 10px;
            margin: 0 6px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .slide-indicator.active {
            background: white;
            width: 11px;
            height: 11px;
        }
        
        .slide-indicator:hover {
            background: rgba(255, 255, 255, 0.7);
        }
        
        .compliance-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 40px;
            padding-bottom: 60px;
        }
        
        .badge {
            background: white;
            border-radius: 50%;
            width: 110px;
            height: 110px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0;
            border: 3px solid;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            text-align: center;
            font-weight: 700;
            font-size: 20px;
            text-decoration: none;
            position: relative;
        }
        
        .badge::after {
            content: "Click for exam outline";
            position: absolute;
            bottom: -45px;
            left: 50%;
            transform: translateX(-50%) scale(0.8);
            background: #4e4c4c;
            color: white;
            padding: 8px 16px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .badge:hover {
            transform: translateY(-5px);
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        
        .badge:hover::after {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }
        
        /* Individual badge colors */
        .badge.ccsp {
            border-color: #a77c00;
            color: #a77c00;
        }
        
        .badge.cism {
            border-color: #0891b2;
            color: #0891b2;
        }
        
        .badge.sscp {
            border-color: #166534;
            color: #166534;
        }
        
        .badge.cisa {
            border-color: #0284c7;
            color: #0284c7;
        }
        
        .badge.cissp {
            border-color: #ea580c;
            color: #ea580c;
        }
        
        .badge.crisc {
            border-color: #84cc16;
            color: #84cc16;
        }
        
        .badge i {
            display: none;
        }
        
        .badge span {
            font-size: 18px;
            font-weight: 700;
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--secondary);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .member-img {
            height: 200px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 60px;
        }
        
        .member-info {
            padding: 20px;
        }
        
        .member-info h3 {
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .member-info .role {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .member-info p {
            color: var(--gray);
            font-size: 14px;
        }
                /* Featured Team Member - Large horizontal card */
        .team-member.featured {
            display: flex;
            flex-direction: row;
            grid-column: 1 / -1;  /* Span full width of grid */
            max-width: 100%;
        }
  
        .team-member.featured .member-img {
            width: 300px;
            min-width: 300px;
            height: 400px;
            min-height: 350px;
        }
  
        .team-member.featured .member-img i {
            font-size: 100px;
        }
  
        .team-member.featured .member-info {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
  
        .team-member.featured .member-info h3 {
            font-size: 28px;
            margin-bottom: 10px;
        }
  
        .team-member.featured .member-info .role {
            font-size: 18px;
            margin-bottom: 15px;
        }
  
        .team-member.featured .member-info p {
            font-size: 16px;
            line-height: 1.6;
        }
  
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .team-member.featured {
                flex-direction: column;
            }
            
            .team-member.featured .member-img {
                width: 100%;
                height: 200px;
            }
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: #f9fafb;
        }
        
        .testimonial-grid {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 80px; /* More padding for arrow space */
        }
        
        .testimonial-slider-wrapper {
            overflow: hidden;
            border-radius: 8px;
        }
        
        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 0;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 4px solid var(--accent);
            display: flex;
            flex-direction: column;
            height: 400px;
            overflow-y: auto;
            font-family: open sans;
            min-width: 100%;
            max-width: 100%;
            flex-shrink: 0;
            box-sizing: border-box;
        }
        
        .testimonial-card:nth-child(2) {
            border-top-color: #ef4444;
        }
        
        .testimonial-card:nth-child(3) {
            border-top-color: #3b82f6;
        }
        
        /* Navigation arrows for testimonials */
        .testimonial-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            color: #1f87b2;
            border: 2px solid #1f87b2;
            font-size: 20px;
            width: 50px;
            height: 50px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .testimonial-nav:hover {
            background: #1f87b2;
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .testimonial-nav.prev {
            left: 10px;
        }
        
        .testimonial-nav.next {
            right: 10px;
        }
        
        .testimonial-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .testimonial-nav:disabled:hover {
            background: rgba(255, 255, 255, 0.9);
            color: #1f87b2;
            transform: translateY(-50%) scale(1);
        }
        
        .testimonial-card::-webkit-scrollbar {
            width: 8px;
        }
        
        .testimonial-card::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .testimonial-card::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }
        
        .testimonial-card::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        
        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 15px;
        }
        
        .testimonial-stars i {
            color: #fbbf24;
            font-size: 18px;
        }
        
        .testimonial-text {
            font-family: sans-serif;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            line-height: 1.6;
            word-wrap: break-word;
            overflow-wrap: break-word;
            white-space: pre-line; 
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: auto;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            color: #2563eb;
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 14px;
        }
        
        /* Map Section */
        .map-container {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 500px;
            position: relative;
        }
        
        .map-placeholder {
            height: 100%;
            background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-size: 18px;
            position: relative;
        }
        /* Map styles */
        #leafletMap {
            width: 100%;
            height: 500px;
        }
        
        .map-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            max-width: 320px;
            border: 2px solid rgba(255, 255, 255, 0.8);
            z-index: 970;
        }
        
        .map-overlay h3 {
            margin-bottom: 12px;
            color: var(--primary);
            font-size: 18px;
            font-weight: 700;
        }
        
        .map-overlay p {
            font-size: 15px;
            color: #333;
            line-height: 1.6;
            font-weight: 500;
        }
        
        /* Total Users Badge */
        .total-users-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            color: white;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 970;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        /* Force Leaflet controls below header and add a top offset so they don't overlap the sticky header */
        .leaflet-control,
        .leaflet-bar,
        .leaflet-control-zoom,
        .leaflet-control-zoom a,
        .leaflet-top.leaflet-left,
        .leaflet-bottom,
        .leaflet-top.leaflet-right {
           z-index: 970 !important;
        }

        .total-users-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(76, 175, 80, 0.5);
        }
        
        .total-users-badge .badge-icon {
            font-size: 28px;
            opacity: 0.9;
        }
        
        .total-users-badge .badge-content {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        
        .total-users-badge .badge-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }
        
        .total-users-badge .badge-count {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .stats {
            display: flex;
            justify-content: space-around;
            margin-top: 30px;
            text-align: center;
        }
        
        .stat-item h3 {
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        .stat-item p {
            font-size: 14px;
            color: var(--gray);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 18px;
            color: white !important;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
            }
            
            .nav-links {
                margin-top: 20px;
            }
            
            .nav-links li {
                margin: 0 10px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            section {
                padding: 50px 0;
            }
            
            .compliance-badges {
                gap: 15px;
            }
            
            .badge {
                width: 100px;
                height: 100px;
            }
            
            .badge i {
                font-size: 24px;
            }
            
            .badge span {
                font-size: 12px;
            }
            
            .slideshow-container {
                padding: 40px 10px;
            }
            
            .slide h2 {
                font-size: 28px;
            }
            
            .slide h3 {
                font-size: 20px;
            }
            
            .slide p {
                font-size: 16px;
            }
            
            .slide-nav {
                padding: 15px 18px;
                font-size: 22px;
            }
            
            /* Testimonial responsive */
            .testimonial-grid {
                padding: 0 60px;
            }
            
            .testimonial-nav {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .testimonial-nav.prev {
                left: 5px;
            }
            
            .testimonial-nav.next {
                right: 5px;
            }
            
            /* Total Users Badge responsive */
            .total-users-badge {
                padding: 12px 16px;
                bottom: 15px;
                right: 15px;
            }
            
            .total-users-badge .badge-icon {
                font-size: 24px;
            }
            
            .total-users-badge .badge-count {
                font-size: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .compliance-badges {
                gap: 10px;
            }
            
            .badge {
                width: 85px;
                height: 85px;
            }
            
            .badge i {
                font-size: 20px;
            }
            
            .badge span {
                font-size: 11px;
            }
            
            .slide h2 {
                font-size: 24px;
            }
            
            .slide h3 {
                font-size: 18px;
            }
            
            .slide p {
                font-size: 15px;
            }
            
            .slide ul li {
                font-size: 15px;
            }
            
            .slide-nav {
                padding: 12px 15px;
                font-size: 20px;
            }
            
            /* Testimonial responsive */
            .testimonial-grid {
                padding: 0 50px;
            }
            
            .testimonial-nav {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .testimonial-nav.prev {
                left: 3px;
            }
            
            .testimonial-nav.next {
                right: 3px;
            }
            
            /* Total Users Badge responsive - small mobile */
            .total-users-badge {
                padding: 10px 14px;
                bottom: 10px;
                right: 10px;
                gap: 8px;
            }
            
            .total-users-badge .badge-icon {
                font-size: 20px;
            }
            
            .total-users-badge .badge-label {
                font-size: 10px;
            }
            
            .total-users-badge .badge-count {
                font-size: 18px;
            }
        }
        
        /* Custom Leaflet Tooltip Styles for Map Pins */
        .leaflet-tooltip.custom-tooltip {
            background-color: white;
            border: 2px solid #1f87b2;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-width: 160px;
        }
        
        .leaflet-tooltip.custom-tooltip::before {
            border-top-color: #1f87b2;
        }
        
        .leaflet-tooltip-top.custom-tooltip::before {
            border-top-color: #1f87b2;
        }
        
        .leaflet-tooltip-bottom.custom-tooltip::before {
            border-bottom-color: #1f87b2;
        }
        
        .leaflet-tooltip-left.custom-tooltip::before {
            border-left-color: #1f87b2;
        }
        
        .leaflet-tooltip-right.custom-tooltip::before {
            border-right-color: #1f87b2;
        }
    /* Footer heading visibility fix */
        .footer-contact-unique h3,
        .footer-links-unique h3 {
            display: block !important;
            margin-bottom: 12px;
            font-size: 18px;
            font-weight: 600;
            color: #333 !important;
        }

        /* Ensure footer text is visible */
        .footer-contact-unique,
        .footer-links-unique {
            display: block;
        }

        .footer-contact-unique p,
        .footer-links-unique ul {
            display: block;
        }
            /* Footer link colors - make them light blue/cyan */
    .footer-links-unique a,
    .footer-policy-links a {
        color: var(--wnp-color-primary);  /* Light cyan/blue color */
    }
    
    .footer-links-unique a:hover,
    .footer-policy-links a:hover {
        color: #007bff  !important;  /* Darker cyan on hover */
    }
    
    /* Keep email link the same light blue color */
    
    .footer-contact-unique a:hover {
        color: #007bff !important;
    }