
        body {
            font-family: 'Cinzel', serif;
            margin: 0;
            padding: 0;
            background-color: #0a1f33;
            color: #d4c08e;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main {
            padding-top: 80px;
            padding-bottom: 40px;
        }
        h1 {
            font-size: 2.5rem;
            color: #ffd700;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 1.8rem;
            color: #c0a060;
            border-bottom: 1px solid #3a546e;
            padding-bottom: 10px;
            margin-top: 40px;
        }
        p {
            margin-bottom: 20px;
        }
        .last-updated {
            font-style: italic;
            text-align: center;
            margin-bottom: 40px;
            color: #8a9cad;
        }
        .nav-section {
            background-color: #152a3c;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 40px;
        }
        .nav-section ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .nav-section li a {
            color: #c0a060;
            text-decoration: none;
            padding: 5px 10px;
            border: 1px solid #3a546e;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .nav-section li a:hover {
            background-color: #3a546e;
            color: #ffd700;
        }
        ul.cookie-types {
            list-style-type: disc;
            padding-left: 20px;
        }
        ul.cookie-types li {
            margin-bottom: 10px;
        }
        .highlight {
            background-color: #152a3c;
            padding: 20px;
            border-left: 4px solid #c0a060;
            margin: 20px 0;
        }
    