        /* Base styles that match your existing website */
        :root {
            --primary-color: #212529;
            --secondary-color: #495057;
            --accent-color: #6c757d;
            --text-color: #333333;
            --light-bg: #f8f9fa;
            --dark-bg: #212529;
            --border-radius: 4px;
            --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            --nist-color: #0d6efd;
            --iso-color: #20c997;
            --cis-color: #fd7e14;
            --pci-color: #dc3545;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Times New Roman", Times, serif;
            font-style: italic;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        header:after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: #adb5bd;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: white;
            font-weight: 500;
            position: relative;
            text-decoration: none;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: white;
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: white;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            cursor: pointer;
            font-size: 24px;
        }

        /* Compliance Navigator specific styles */
        .navigator-section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 35px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            z-index: 1;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--secondary-color);
            max-width: 800px;
            margin-bottom: 40px;
        }

        .cyber-accent {
            position: relative;
        }

        .cyber-accent::before {
            content: "";
            position: absolute;
            height: 2px;
            width: 60px;
            background-color: var(--secondary-color);
            bottom: -12px;
            left: 0;
        }

        .cyber-accent::after {
            content: "";
            position: absolute;
            height: 2px;
            width: 30px;
            background-color: #adb5bd;
            bottom: -12px;
            left: 70px;
        }

        /* Framework Tabs */
        .framework-tabs {
            display: flex;
            border-bottom: 1px solid #dee2e6;
            margin-bottom: 30px;
            overflow-x: auto;
        }

        .framework-tab {
            padding: 15px 30px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 500;
            white-space: nowrap;
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }

        .framework-tab:hover {
            background-color: #f1f3f5;
        }

        .framework-tab.active {
            border-bottom-color: var(--secondary-color);
            color: var(--secondary-color);
        }

        .framework-tab i {
            margin-right: 10px;
            font-size: 18px;
        }

        .framework-tab.nist.active {
            border-bottom-color: var(--nist-color);
            color: var(--nist-color);
        }

        .framework-tab.iso.active {
            border-bottom-color: var(--iso-color);
            color: var(--iso-color);
        }

        .framework-tab.cis.active {
            border-bottom-color: var(--cis-color);
            color: var(--cis-color);
        }

        .framework-tab.pci.active {
            border-bottom-color: var(--pci-color);
            color: var(--pci-color);
        }

        /* Framework Content */
        .framework-content {
            display: none;
        }

        .framework-content.active {
            display: block;
        }

        .framework-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .framework-title {
            font-size: 24px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }

        .framework-title i {
            margin-right: 15px;
            font-size: 28px;
        }

        .framework-title.nist i {
            color: var(--nist-color);
        }

        .framework-title.iso i {
            color: var(--iso-color);
        }

        .framework-title.cis i {
            color: var(--cis-color);
        }

        .framework-title.pci i {
            color: var(--pci-color);
        }

        .framework-actions {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: var(--border-radius);
            border: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .btn i {
            margin-right: 8px;
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--secondary-color);
            color: var(--secondary-color);
        }

        .btn-outline:hover {
            background-color: var(--secondary-color);
            color: white;
        }

        .btn-outline.nist {
            border-color: var(--nist-color);
            color: var(--nist-color);
        }

        .btn-outline.nist:hover {
            background-color: var(--nist-color);
            color: white;
        }

        .btn-outline.iso {
            border-color: var(--iso-color);
            color: var(--iso-color);
        }

        .btn-outline.iso:hover {
            background-color: var(--iso-color);
            color: white;
        }

        .btn-outline.cis {
            border-color: var(--cis-color);
            color: var(--cis-color);
        }

        .btn-outline.cis:hover {
            background-color: var(--cis-color);
            color: white;
        }

        .btn-outline.pci {
            border-color: var(--pci-color);
            color: var(--pci-color);
        }

        .btn-outline.pci:hover {
            background-color: var(--pci-color);
            color: white;
        }

        .framework-description {
            margin-bottom: 30px;
            max-width: 900px;
            line-height: 1.7;
        }

        /* Framework Categories */
        .category-tabs {
            display: flex;
            background-color: #f1f3f5;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
            overflow-x: auto;
        }

        .category-tab {
            padding: 12px 20px;
            cursor: pointer;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.3s;
        }

        .category-tab:hover {
            background-color: #e9ecef;
        }

        .category-tab.active {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        /* Framework Controls */
        .controls-container {
            margin-bottom: 30px;
        }

        .controls-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .controls-title {
            font-size: 20px;
            color: var(--primary-color);
            font-weight: bold;
        }

        .search-filter {
            display: flex;
            gap: 10px;
        }

        .search-input {
            padding: 8px 15px;
            border: 1px solid #dee2e6;
            border-radius: var(--border-radius);
            min-width: 250px;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--secondary-color);
        }

        .controls-table {
            width: 100%;
            border-collapse: collapse;
        }

        .controls-table th,
        .controls-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #dee2e6;
        }

        .controls-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            position: sticky;
            top: 70px;
            z-index: 10;
        }

        .controls-table tbody tr:hover {
            background-color: #f8f9fa;
            cursor: pointer;
        }

        .controls-table tbody tr.selected {
            background-color: rgba(13, 110, 253, 0.05);
            border-left: 3px solid var(--nist-color);
        }

        .control-id {
            font-weight: 600;
            white-space: nowrap;
        }

        .control-description {
            max-width: 400px;
        }

        .control-status {
            text-align: center;
        }

        .status-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
        }

        .status-badge.implemented {
            background-color: rgba(32, 201, 151, 0.1);
            color: #20c997;
            border: 1px solid rgba(32, 201, 151, 0.2);
        }

        .status-badge.partial {
            background-color: rgba(255, 193, 7, 0.1);
            color: #ffc107;
            border: 1px solid rgba(255, 193, 7, 0.2);
        }

        .status-badge.not-implemented {
            background-color: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            border: 1px solid rgba(220, 53, 69, 0.2);
        }

        .status-badge.not-applicable {
            background-color: rgba(108, 117, 125, 0.1);
            color: #6c757d;
            border: 1px solid rgba(108, 117, 125, 0.2);
        }

        /* Control Detail */
        .control-detail {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            margin-top: 30px;
        }

        .detail-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #dee2e6;
        }

        .detail-title {
            display: flex;
            flex-direction: column;
        }

        .detail-id {
            font-size: 18px;
            color: var(--nist-color);
            font-weight: bold;
            margin-bottom: 10px;
        }

        .detail-name {
            font-size: 24px;
            color: var(--primary-color);
            font-weight: bold;
        }

        .detail-close {
            background: none;
            border: none;
            color: #6c757d;
            cursor: pointer;
            font-size: 20px;
            transition: color 0.3s;
        }

        .detail-close:hover {
            color: var(--primary-color);
        }

        .detail-info {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }

        .detail-item {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: var(--border-radius);
        }

        .detail-label {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 5px;
        }

        .detail-value {
            font-size: 16px;
            color: var(--primary-color);
            font-weight: 500;
        }

        .detail-section {
            margin-bottom: 25px;
        }

        .detail-section-title {
            font-size: 18px;
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .detail-description {
            line-height: 1.7;
        line-height: 1.7;
            margin-bottom: 15px;
        }

        .detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .implementation-guide {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-top: 10px;
        }

        .implementation-title {
            font-size: 16px;
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 10px;
        }

        .guide-item {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .guide-item:before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }

        .related-controls {
            margin-top: 15px;
        }

        .related-control {
            display: inline-block;
            padding: 5px 10px;
            background-color: #f1f3f5;
            border-radius: var(--border-radius);
            margin-right: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .related-control:hover {
            background-color: #e9ecef;
        }

        .reference-item {
            margin-bottom: 10px;
        }

        .reference-item a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .reference-item a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }

        /* Assessment Form */
        .assessment-form {
            margin-top: 30px;
            border-top: 1px solid #dee2e6;
            padding-top: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #dee2e6;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
        }

        .form-row {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .form-row .form-group {
            flex: 1;
            min-width: 200px;
        }

        /* Comparison View */
        .comparison-view {
            margin-top: 40px;
        }

        .comparison-title {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: bold;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 30px;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 12px 15px;
            text-align: left;
            border: 1px solid #dee2e6;
        }

        .comparison-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            position: sticky;
            top: 70px;
            z-index: 10;
        }

        .comparison-table tbody tr:hover {
            background-color: #f8f9fa;
        }

        .comparison-table .framework-column {
            font-weight: 600;
            white-space: nowrap;
        }

        .comparison-table .domain-column {
            min-width: 150px;
        }

        .comparison-table .controls-column {
            min-width: 250px;
        }

        /* Media Queries */
        @media (max-width: 992px) {
            .detail-info {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                flex-direction: column;
                background-color: var(--primary-color);
                padding: 20px;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 1000;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .nav-links li {
                margin: 15px 0;
            }

            .detail-info {
                grid-template-columns: 1fr;
            }

            .controls-table {
                font-size: 14px;
            }

            .controls-table th,
            .controls-table td {
                padding: 8px 10px;
            }

            .framework-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .comparison-table {
                font-size: 14px;
            }
        }