
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f1ff;
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main {
            padding-top: 80px;
            padding-bottom: 60px;
        }
        h1 {
            color: #6200ea;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #7c4dff;
            font-size: 1.8rem;
            margin-top: 40px;
            border-bottom: 2px solid #d1c4e9;
            padding-bottom: 10px;
        }
        .last-updated {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-bottom: 40px;
        }
        .section-nav {
            background-color: #ede7f6;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .section-nav ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .section-nav a {
            color: #5e35b1;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 20px;
            background-color: #d1c4e9;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .section-nav a:hover {
            background-color: #9575cd;
            color: white;
        }
        p {
            margin-bottom: 20px;
        }
        ul {
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        .cookie-type {
            background-color: #f3e5f5;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid #9c27b0;
        }
        .cookie-type h3 {
            color: #6a1b9a;
            margin-top: 0;
        }
    