
        body {
            font-family: 'Nunito', sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main {
            padding-top: 80px;
            padding-bottom: 50px;
        }
        h1 {
            color: #D01012;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        h2 {
            color: #006DB7;
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FFCF00;
        }
        p {
            margin-bottom: 15px;
        }
        .last-updated {
            font-style: italic;
            color: #666;
            margin-bottom: 30px;
        }
        .nav-section {
            background-color: #F8F8F8;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            border-left: 4px solid #FFCF00;
        }
        .nav-section ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .nav-section li {
            margin-bottom: 10px;
        }
        .nav-section a {
            text-decoration: none;
            color: #006DB7;
            padding: 5px 10px;
            border-radius: 4px;
            background-color: #E6F2F9;
            transition: all 0.3s;
            display: inline-block;
        }
        .nav-section a:hover {
            background-color: #006DB7;
            color: white;
        }
        .cookie-types {
            background-color: #FAFAFA;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
        }
        .cookie-type {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #ddd;
        }
        .cookie-type:last-child {
            border-bottom: none;
        }
        .cookie-type h3 {
            color: #D01012;
            margin-bottom: 10px;
        }
    