  /* Replicating Professional Styling from previous revision */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --color-primary: #0b2545; /* Navy Blue - Corporate */
            --color-accent: #007bff; /* Bright Blue - Action */
            --color-text-dark: #343a40;
            --color-bg-light: #f4f7f9;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--color-text-dark);
            background-color: var(--color-bg-light);
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            color: var(--color-primary);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header */
        header {
            background: var(--color-bg-white);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--color-primary);
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.5rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }
        
        nav a {
            text-decoration: none;
            color: var(--color-text-dark);
            font-weight: 600;
            transition: color 0.3s;
            font-size: 0.95rem;
        }
        
        nav a:hover {
            color: #2563eb;
        }

        nav a.active {
            color: #2563eb;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background: white;
            padding: 0.75rem 0;
            border-bottom: 1px solid #e9ecef;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .breadcrumb a {
            color: var(--color-accent);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* Page Header */
        .page-header {
            background: var(--color-primary); /* Dark header for impact */
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .page-header h1 {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 0.75rem;
            font-weight: 800;
        }
        
        .page-header p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            color: #ced4da;
        }
        
        /* Main Content Structure */
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr; /* Main Content & Sidebar/Methodology */
            gap: 40px;
        }

        .main-content-area {
            min-width: 0;
        }

        .content-section {
            background: white;
            padding: 2.5rem;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border-left: 5px solid var(--color-accent);
        }

        .content-section.no-border {
            border-left: none;
            padding: 0;
            background: none;
            box-shadow: none;
            margin-bottom: 0;
        }
        
        .content-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            padding-bottom: 5px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .content-section p {
            color: #495057;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        
        /* Stats & Value Props */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 columns for better focus */
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .stat-card {
            text-align: left;
            padding: 1.5rem;
            background: #e9f5ff; /* Light accent background */
            border-radius: 8px;
            border: 1px solid var(--color-accent);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-primary);
            display: block;
        }
        
        .stat-label {
            color: var(--color-accent);
            font-size: 1rem;
            margin-top: 0.25rem;
            font-weight: 600;
        }

        /* Methodology Sidebar */
        .sidebar-methodology {
            background: #ffffff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            position: sticky;
            top: 6rem;
            height: fit-content;
        }

        .sidebar-methodology h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 10px;
        }

        .method-list {
            list-style: none;
            padding: 0;
        }

        .method-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f8f9fa;
            font-weight: 500;
            color: var(--color-text-dark);
            transition: color 0.2s;
        }

        .method-list li::before {
            content: "→ ";
            color: var(--color-accent);
            font-weight: bold;
            margin-right: 8px;
        }

        .method-list a {
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 600;
        }

        /* FAQ Section (Improved) */
        .faq-section {
            background: none;
            padding: 0;
            box-shadow: none;
        }
        
        .faq-item {
            background: #ffffff;
            border: 1px solid #e9ecef;
            padding: 1.5rem;
            margin-bottom: 15px;
            border-radius: 6px;
        }
        
        .faq-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }
        
        .faq-item p {
            color: #495057;
            line-height: 1.7;
            margin-bottom: 0;
        }
        
        /* Footer */
        footer {
            background: var(--color-primary);
            color: #ced4da;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
        }

        .footer-logo span {
            color: #60a5fa;
        }
        
        .footer-info p {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #adb5bd;
        }

        .footer-nav h4, .references h4 {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }
        
        .footer-nav ul, .references ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-nav a, .references a {
            color: #adb5bd;
            text-decoration: none;
            display: block;
            padding: 4px 0;
            transition: color 0.2s;
            font-size: 0.9rem;
        }
        
        .footer-nav a:hover, .references a:hover {
            color: #ffffff;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-methodology {
                position: static;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 600px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            .page-header h1 {
                font-size: 2.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }