        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            
        }
        
        .container-1 {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            padding: 40px 60px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-top: 170px;
            line-height: 1.6;
            color: #2c3e50;
            background: #f8f9fa;
        }
        
        
       .container-1 h1 {
            font-size: 2.5em;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .subtitle {
            font-size: 1.1em;
            color: #7f8c8d;
            font-weight: 400;
        }
        
        .intro {
            background: #ecf0f1;
            padding: 25px;
            margin-bottom: 40px;
            border-left: 4px solid #800000;
        }
        
        .intro p {
            margin-bottom: 12px;
            font-size: 1.05em;
        }
        
        .intro p:last-child {
            margin-bottom: 0;
        }
        
        .disclaimer {
            font-size: 0.95em;
            font-style: italic;
            color: #555;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #bdc3c7;
        }
        
        .quick-nav {
            background: #fff;
            border: 2px solid #e8e8e8;
            padding: 20px 25px;
            margin-bottom: 40px;
        }
        
        .quick-nav h3 {
            font-size: 1.1em;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .quick-nav ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px;
        }
        
        .quick-nav a {
            text-decoration: none;
            padding: 8px 12px;
            display: block;
            border-left: 3px solid transparent;
            transition: all 0.2s;
        }
        
        .quick-nav a:hover {
            border-left-color: #800000;
            background: #f8f9fa;
            padding-left: 18px;
        }
         
       .container-1 h2 {
            font-size: 1.8em;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e8e8e8;
        }
        
       .container-1 h3 {
            font-size: 1.3em;
            color: #800000;
            margin: 30px 0 15px 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0 30px 0;
            background: white;
        }
        
        thead {
            background: #800000;
            color: white;
        }
        
        th {
            padding: 14px;
            text-align: left;
            font-weight: 600;
            font-size: 0.95em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        td {
            padding: 12px 14px;
            border-bottom: 1px solid #e8e8e8;
        }
        
        tbody tr:hover {
            background: #f8f9fa;
        }

        /* Slightly darken table header on hover/focus and add transition */
        thead th {
            transition: background-color 150ms ease, color 150ms ease;
        }

        thead tr:hover th,
        thead th:hover,
        thead th:focus,
        thead th:focus-visible {
            background: #660000; /* darker maroon on hover/focus */
            color: white;
        }
        
        tbody tr:last-child td {
            border-bottom: 2px solid #800000;
        }
        
        .value-col {
            font-weight: 600;
            color: #800000;
            white-space: nowrap;
        }
        
        .callout {
            background: #fff9e6;
            border-left: 4px solid #f39c12;
            padding: 15px 20px;
            margin: 20px 0;
        }
        
        .callout-title {
            font-weight: 600;
            color: #e67e22;
            margin-bottom: 8px;
            font-size: 1.05em;
        }
        
        .callout p {
            margin-bottom: 8px;
        }
        
        .callout p:last-child {
            margin-bottom: 0;
        }
        
        .note-box {
            background: #e8f4f8;
            border-left: 4px solid #800000;
            padding: 15px 20px;
            margin: 20px 0;
        }
        
        .note-box-title {
            font-weight: 600;
            color: #800000;
            margin-bottom: 8px;
            font-size: 1.05em;
        }
        
        .why-matters {
            font-size: 0.95em;
            color: #555;
            font-style: italic;
            margin-top: 8px;
        }
        
        @media (max-width: 768px) {
            .container-1 {
                padding: 20px 25px;
            }

            .container-1 h1 {
                font-size: 1.8em;
            }

            table {
                font-size: 0.9em;
            }

            th, td {
                padding: 10px 8px;
            }

            .quick-nav ul {
                grid-template-columns: 1fr;
            }
        }
