
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #0a0a0a;
            color: #d0d0d0;
            line-height: 1.6;
        }
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main {
            padding-top: 80px;
            padding-bottom: 50px;
        }
        h1 {
            color: #cc0000;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
        }
        h2 {
            color: #ff6600;
            font-size: 1.8rem;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
            margin-top: 40px;
        }
        .effective-date {
            text-align: center;
            font-style: italic;
            margin-bottom: 40px;
            color: #999;
        }
        section {
            margin-bottom: 30px;
            background-color: #111;
            padding: 20px;
            border-radius: 5px;
            border-left: 3px solid #cc0000;
        }
        .nav-section {
            background-color: #1a1a1a;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 30px;
        }
        .nav-section ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .nav-section li {
            margin-bottom: 5px;
        }
        .nav-section a {
            color: #ff6600;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 3px;
            background-color: #222;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .nav-section a:hover {
            background-color: #333;
            color: #ff9900;
        }
        strong {
            color: #ff9900;
        }
        .highlight {
            color: #cc0000;
            font-weight: bold;
        }
    