        #gdpr-consent {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #fff;
            border: 1px solid #ccc;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            font-family: Arial, sans-serif;
            z-index: 1000;
        }
        #gdpr-consent h3 {
            margin-top: 0;
        }
        #gdpr-consent p {
            margin-bottom: 10px;
            font-size: 14px;
            line-height: 1.4;
        }
        #gdpr-consent .buttons {
            text-align: right;
        }
        #gdpr-consent button {
            margin-left: 10px;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            border-radius: 4px;
            font-size: 14px;
        }
        #gdpr-consent .accept {
            background-color: #4CAF50;
            color: white;
        }
        #gdpr-consent .decline {
            background-color: #f44336;
            color: white;
        }
        #gdpr-consent a {
            color: #007BFF;
            text-decoration: none;
        }
        #gdpr-consent a:hover {
            text-decoration: underline;
        }